Advertisement
gsavix

colors.xml imagemagick convert

Apr 12th, 2016
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE colormap [
  3. <!ELEMENT colormap (color)+>
  4. <!ELEMENT color (#PCDATA)>
  5. <!ATTLIST color name CDATA "0">
  6. <!ATTLIST color color CDATA "rgb(0,0,0)">
  7. <!ATTLIST color compliance CDATA "SVG">
  8. ]>
  9.  
  10. <!-- this file is posted by gsavix@gmail abril-2016
  11.  
  12. readme-first
  13.  
  14. convert.exe: UnableToOpenConfigureFile `colors.xml' @ warning/configure.c/GetConfigureOptions/000
  15. on windows put this colors.xml on same directory where is imagemagick convert files
  16. then you could use alias for colors below
  17.  
  18. -->
  19. <!--
  20.  Associate a color name with its red, green, blue, and alpha intensities.
  21.  
  22.  A number of methods and options require a color parameter. It is often
  23.  convenient to refer to a color by name (e.g. white) rather than by hex
  24.  value (e.g. #fff). This file maps a color name to its equivalent red,
  25.  green, blue, and alpha intensities (e.g. for white, red = 255, green =
  26.  255, blue = 255, and alpha = 0).
  27. -->
  28. <colormap>
  29.   <!-- <color name="none" color="rgba(0,0,0,0)" compliance="SVG, XPM"/> -->
  30.   <!-- <color name="black" color="rgb(0,0,0)" compliance="SVG, X11, XPM"/> -->
  31.   <!-- <color name="red" color="rgb(255,0,0)" compliance="SVG, X11, XPM"/> -->
  32.   <!-- <color name="magenta" color="rgb(255,0,255)" compliance="SVG, X11, XPM"/> -->
  33.   <!-- <color name="green" color="rgb(0,128,0)" compliance="SVG"/> -->
  34.   <!-- <color name="cyan" color="rgb(0,255,255)" compliance="SVG, X11, XPM"/> -->
  35.   <!-- <color name="blue" color="rgb(0,0,255)" compliance="SVG, X11, XPM"/> -->
  36.   <!-- <color name="yellow" color="rgb(255,255,0)" compliance="SVG, X11, XPM"/> -->
  37.   <!-- <color name="white" color="rgb(255,255,255)" compliance="SVG, X11"/> -->
  38. </colormap>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement