]> granicus.if.org Git - imagemagick/blob - magick/color.c
(no commit message)
[imagemagick] / magick / color.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                       CCCC   OOO   L       OOO   RRRR                       %
6 %                      C      O   O  L      O   O  R   R                      %
7 %                      C      O   O  L      O   O  RRRR                       %
8 %                      C      O   O  L      O   O  R R                        %
9 %                       CCCC   OOO   LLLLL   OOO   R  R                       %
10 %                                                                             %
11 %                                                                             %
12 %                          MagickCore Color Methods                           %
13 %                                                                             %
14 %                              Software Design                                %
15 %                                John Cristy                                  %
16 %                                 July 1992                                   %
17 %                                                                             %
18 %                                                                             %
19 %  Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization      %
20 %  dedicated to making software imaging solutions freely available.           %
21 %                                                                             %
22 %  You may not use this file except in compliance with the License.  You may  %
23 %  obtain a copy of the License at                                            %
24 %                                                                             %
25 %    http://www.imagemagick.org/script/license.php                            %
26 %                                                                             %
27 %  Unless required by applicable law or agreed to in writing, software        %
28 %  distributed under the License is distributed on an "AS IS" BASIS,          %
29 %  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   %
30 %  See the License for the specific language governing permissions and        %
31 %  limitations under the License.                                             %
32 %                                                                             %
33 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34 %
35 %  We use linked-lists because splay-trees do not currently support duplicate
36 %  key / value pairs (.e.g X11 green compliance and SVG green compliance).
37 %
38 */
39 \f
40 /*
41   Include declarations.
42 */
43 #include "magick/studio.h"
44 #include "magick/blob.h"
45 #include "magick/cache-view.h"
46 #include "magick/cache.h"
47 #include "magick/color.h"
48 #include "magick/color-private.h"
49 #include "magick/client.h"
50 #include "magick/configure.h"
51 #include "magick/exception.h"
52 #include "magick/exception-private.h"
53 #include "magick/gem.h"
54 #include "magick/geometry.h"
55 #include "magick/image-private.h"
56 #include "magick/memory_.h"
57 #include "magick/monitor.h"
58 #include "magick/monitor-private.h"
59 #include "magick/option.h"
60 #include "magick/pixel-private.h"
61 #include "magick/quantize.h"
62 #include "magick/quantum.h"
63 #include "magick/semaphore.h"
64 #include "magick/string_.h"
65 #include "magick/token.h"
66 #include "magick/utility.h"
67 #include "magick/xml-tree.h"
68 \f
69 /*
70   Define declarations.
71 */
72 #define ColorFilename  "colors.xml"
73 \f
74 /*
75   Typedef declarations.
76 */
77 typedef struct _ColorMapInfo
78 {
79   const char
80     *name;
81
82   const float
83     red,
84     green,
85     blue,
86     alpha;
87
88   const ssize_t
89     compliance;
90 } ColorMapInfo;
91 \f
92 /*
93   Static declarations.
94 */
95 static const ColorMapInfo
96   ColorMap[] =
97   {
98     { "none", 0, 0, 0, 0, SVGCompliance | XPMCompliance },
99     { "black", 0, 0, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
100     { "red", 255, 0, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
101     { "magenta", 255, 0, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
102     { "green", 0, 128, 0, 1, SVGCompliance },
103     { "cyan", 0, 255, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
104     { "blue", 0, 0, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
105     { "yellow", 255, 255, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
106     { "white", 255, 255, 255, 1, SVGCompliance | X11Compliance },
107     { "AliceBlue", 240, 248, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
108     { "AntiqueWhite", 250, 235, 215, 1, SVGCompliance | X11Compliance | XPMCompliance },
109     { "AntiqueWhite1", 255, 239, 219, 1, X11Compliance },
110     { "AntiqueWhite2", 238, 223, 204, 1, X11Compliance },
111     { "AntiqueWhite3", 205, 192, 176, 1, X11Compliance },
112     { "AntiqueWhite4", 139, 131, 120, 1, X11Compliance },
113     { "aqua", 0, 255, 255, 1, SVGCompliance },
114     { "aquamarine", 127, 255, 212, 1, SVGCompliance | X11Compliance | XPMCompliance },
115     { "aquamarine1", 127, 255, 212, 1, X11Compliance },
116     { "aquamarine2", 118, 238, 198, 1, X11Compliance },
117     { "aquamarine3", 102, 205, 170, 1, X11Compliance },
118     { "aquamarine4", 69, 139, 116, 1, X11Compliance },
119     { "azure", 240, 255, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
120     { "azure1", 240, 255, 255, 1, X11Compliance },
121     { "azure2", 224, 238, 238, 1, X11Compliance },
122     { "azure3", 193, 205, 205, 1, X11Compliance },
123     { "azure4", 131, 139, 139, 1, X11Compliance },
124     { "beige", 245, 245, 220, 1, SVGCompliance | X11Compliance | XPMCompliance },
125     { "bisque", 255, 228, 196, 1, SVGCompliance | X11Compliance | XPMCompliance },
126     { "bisque1", 255, 228, 196, 1, X11Compliance },
127     { "bisque2", 238, 213, 183, 1, X11Compliance },
128     { "bisque3", 205, 183, 158, 1, X11Compliance },
129     { "bisque4", 139, 125, 107, 1, X11Compliance },
130     { "BlanchedAlmond", 255, 235, 205, 1, SVGCompliance | X11Compliance | XPMCompliance },
131     { "blue1", 0, 0, 255, 1, X11Compliance },
132     { "blue2", 0, 0, 238, 1, X11Compliance },
133     { "blue3", 0, 0, 205, 1, X11Compliance },
134     { "blue4", 0, 0, 139, 1, X11Compliance },
135     { "BlueViolet", 138, 43, 226, 1, SVGCompliance | X11Compliance | XPMCompliance },
136     { "brown", 165, 42, 42, 1, SVGCompliance | X11Compliance | XPMCompliance },
137     { "brown1", 255, 64, 64, 1, X11Compliance },
138     { "brown2", 238, 59, 59, 1, X11Compliance },
139     { "brown3", 205, 51, 51, 1, X11Compliance },
140     { "brown4", 139, 35, 35, 1, X11Compliance },
141     { "burlywood", 222, 184, 135, 1, SVGCompliance | X11Compliance | XPMCompliance },
142     { "burlywood1", 255, 211, 155, 1, X11Compliance },
143     { "burlywood2", 238, 197, 145, 1, X11Compliance },
144     { "burlywood3", 205, 170, 125, 1, X11Compliance },
145     { "burlywood4", 139, 115, 85, 1, X11Compliance },
146     { "cadet blue", 95, 158, 160, 1, X11Compliance },
147     { "CadetBlue", 95, 158, 160, 1, SVGCompliance | X11Compliance | XPMCompliance },
148     { "CadetBlue1", 152, 245, 255, 1, X11Compliance },
149     { "CadetBlue2", 142, 229, 238, 1, X11Compliance },
150     { "CadetBlue3", 122, 197, 205, 1, X11Compliance },
151     { "CadetBlue4", 83, 134, 139, 1, X11Compliance },
152     { "chartreuse", 127, 255, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
153     { "chartreuse1", 127, 255, 0, 1, X11Compliance },
154     { "chartreuse2", 118, 238, 0, 1, X11Compliance },
155     { "chartreuse3", 102, 205, 0, 1, X11Compliance },
156     { "chartreuse4", 69, 139, 0, 1, X11Compliance },
157     { "chocolate", 210, 105, 30, 1, SVGCompliance | X11Compliance | XPMCompliance },
158     { "chocolate1", 255, 127, 36, 1, X11Compliance },
159     { "chocolate2", 238, 118, 33, 1, X11Compliance },
160     { "chocolate3", 205, 102, 29, 1, X11Compliance },
161     { "chocolate4", 139, 69, 19, 1, X11Compliance },
162     { "coral", 255, 127, 80, 1, SVGCompliance | X11Compliance | XPMCompliance },
163     { "coral1", 255, 114, 86, 1, X11Compliance },
164     { "coral2", 238, 106, 80, 1, X11Compliance },
165     { "coral3", 205, 91, 69, 1, X11Compliance },
166     { "coral4", 139, 62, 47, 1, X11Compliance },
167     { "CornflowerBlue", 100, 149, 237, 1, SVGCompliance | X11Compliance | XPMCompliance },
168     { "cornsilk", 255, 248, 220, 1, SVGCompliance | X11Compliance | XPMCompliance },
169     { "cornsilk1", 255, 248, 220, 1, X11Compliance },
170     { "cornsilk2", 238, 232, 205, 1, X11Compliance },
171     { "cornsilk3", 205, 200, 177, 1, X11Compliance },
172     { "cornsilk4", 139, 136, 120, 1, X11Compliance },
173     { "crimson", 220, 20, 60, 1, SVGCompliance },
174     { "cyan1", 0, 255, 255, 1, X11Compliance },
175     { "cyan2", 0, 238, 238, 1, X11Compliance },
176     { "cyan3", 0, 205, 205, 1, X11Compliance },
177     { "cyan4", 0, 139, 139, 1, X11Compliance },
178     { "dark violet", 148, 0, 211, 1, X11Compliance },
179     { "DarkBlue", 0, 0, 139, 1, SVGCompliance | X11Compliance },
180     { "DarkCyan", 0, 139, 139, 1, SVGCompliance | X11Compliance },
181     { "DarkGoldenrod", 184, 134, 11, 1, SVGCompliance | X11Compliance | XPMCompliance },
182     { "DarkGoldenrod1", 255, 185, 15, 1, X11Compliance },
183     { "DarkGoldenrod2", 238, 173, 14, 1, X11Compliance },
184     { "DarkGoldenrod3", 205, 149, 12, 1, X11Compliance },
185     { "DarkGoldenrod4", 139, 101, 8, 1, X11Compliance },
186     { "DarkGray", 169, 169, 169, 1, SVGCompliance | X11Compliance },
187     { "DarkGreen", 0, 100, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
188     { "DarkGrey", 169, 169, 169, 1, SVGCompliance | X11Compliance },
189     { "DarkKhaki", 189, 183, 107, 1, SVGCompliance | X11Compliance | XPMCompliance },
190     { "DarkMagenta", 139, 0, 139, 1, SVGCompliance | X11Compliance },
191     { "DarkOliveGreen", 85, 107, 47, 1, SVGCompliance | X11Compliance | XPMCompliance },
192     { "DarkOliveGreen1", 202, 255, 112, 1, X11Compliance },
193     { "DarkOliveGreen2", 188, 238, 104, 1, X11Compliance },
194     { "DarkOliveGreen3", 162, 205, 90, 1, X11Compliance },
195     { "DarkOliveGreen4", 110, 139, 61, 1, X11Compliance },
196     { "DarkOrange", 255, 140, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
197     { "DarkOrange1", 255, 127, 0, 1, X11Compliance },
198     { "DarkOrange2", 238, 118, 0, 1, X11Compliance },
199     { "DarkOrange3", 205, 102, 0, 1, X11Compliance },
200     { "DarkOrange4", 139, 69, 0, 1, X11Compliance },
201     { "DarkOrchid", 153, 50, 204, 1, SVGCompliance | X11Compliance | XPMCompliance },
202     { "DarkOrchid1", 191, 62, 255, 1, X11Compliance },
203     { "DarkOrchid2", 178, 58, 238, 1, X11Compliance },
204     { "DarkOrchid3", 154, 50, 205, 1, X11Compliance },
205     { "DarkOrchid4", 104, 34, 139, 1, X11Compliance },
206     { "DarkRed", 139, 0, 0, 1, SVGCompliance | X11Compliance },
207     { "DarkSalmon", 233, 150, 122, 1, SVGCompliance | X11Compliance | XPMCompliance },
208     { "DarkSeaGreen", 143, 188, 143, 1, SVGCompliance | X11Compliance | XPMCompliance },
209     { "DarkSeaGreen1", 193, 255, 193, 1, X11Compliance },
210     { "DarkSeaGreen2", 180, 238, 180, 1, X11Compliance },
211     { "DarkSeaGreen3", 155, 205, 155, 1, X11Compliance },
212     { "DarkSeaGreen4", 105, 139, 105, 1, X11Compliance },
213     { "DarkSlateBlue", 72, 61, 139, 1, SVGCompliance | X11Compliance | XPMCompliance },
214     { "DarkSlateGray", 47, 79, 79, 1, SVGCompliance | X11Compliance | XPMCompliance },
215     { "DarkSlateGray1", 151, 255, 255, 1, X11Compliance },
216     { "DarkSlateGray2", 141, 238, 238, 1, X11Compliance },
217     { "DarkSlateGray3", 121, 205, 205, 1, X11Compliance },
218     { "DarkSlateGray4", 82, 139, 139, 1, X11Compliance },
219     { "DarkSlateGrey", 47, 79, 79, 1, SVGCompliance | X11Compliance },
220     { "DarkTurquoise", 0, 206, 209, 1, SVGCompliance | X11Compliance | XPMCompliance },
221     { "DarkViolet", 148, 0, 211, 1, SVGCompliance | X11Compliance | XPMCompliance },
222     { "DeepPink", 255, 20, 147, 1, SVGCompliance | X11Compliance | XPMCompliance },
223     { "DeepPink1", 255, 20, 147, 1, X11Compliance },
224     { "DeepPink2", 238, 18, 137, 1, X11Compliance },
225     { "DeepPink3", 205, 16, 118, 1, X11Compliance },
226     { "DeepPink4", 139, 10, 80, 1, X11Compliance },
227     { "DeepSkyBlue", 0, 191, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
228     { "DeepSkyBlue1", 0, 191, 255, 1, X11Compliance },
229     { "DeepSkyBlue2", 0, 178, 238, 1, X11Compliance },
230     { "DeepSkyBlue3", 0, 154, 205, 1, X11Compliance },
231     { "DeepSkyBlue4", 0, 104, 139, 1, X11Compliance },
232     { "DimGray", 105, 105, 105, 1, SVGCompliance | X11Compliance | XPMCompliance },
233     { "DimGrey", 105, 105, 105, 1, SVGCompliance | X11Compliance },
234     { "DodgerBlue", 30, 144, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
235     { "DodgerBlue1", 30, 144, 255, 1, X11Compliance },
236     { "DodgerBlue2", 28, 134, 238, 1, X11Compliance },
237     { "DodgerBlue3", 24, 116, 205, 1, X11Compliance },
238     { "DodgerBlue4", 16, 78, 139, 1, X11Compliance },
239     { "firebrick", 178, 34, 34, 1, SVGCompliance | X11Compliance | XPMCompliance },
240     { "firebrick1", 255, 48, 48, 1, X11Compliance },
241     { "firebrick2", 238, 44, 44, 1, X11Compliance },
242     { "firebrick3", 205, 38, 38, 1, X11Compliance },
243     { "firebrick4", 139, 26, 26, 1, X11Compliance },
244     { "FloralWhite", 255, 250, 240, 1, SVGCompliance | X11Compliance | XPMCompliance },
245     { "ForestGreen", 34, 139, 34, 1, SVGCompliance | X11Compliance | XPMCompliance },
246     { "fractal", 128, 128, 128, 1, SVGCompliance },
247     { "freeze", 0, 0, 0, 0, SVGCompliance },
248     { "fuchsia", 255, 0, 255, 1, SVGCompliance },
249     { "gainsboro", 220, 220, 220, 1, SVGCompliance | X11Compliance | XPMCompliance },
250     { "GhostWhite", 248, 248, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
251     { "gold", 255, 215, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
252     { "gold1", 255, 215, 0, 1, X11Compliance },
253     { "gold2", 238, 201, 0, 1, X11Compliance },
254     { "gold3", 205, 173, 0, 1, X11Compliance },
255     { "gold4", 139, 117, 0, 1, X11Compliance },
256     { "goldenrod", 218, 165, 32, 1, SVGCompliance | X11Compliance | XPMCompliance },
257     { "goldenrod1", 255, 193, 37, 1, X11Compliance },
258     { "goldenrod2", 238, 180, 34, 1, X11Compliance },
259     { "goldenrod3", 205, 155, 29, 1, X11Compliance },
260     { "goldenrod4", 139, 105, 20, 1, X11Compliance },
261     { "gray", 126, 126, 126, 1, SVGCompliance },
262     { "gray", 190, 190, 190, 1, X11Compliance | XPMCompliance },
263     { "gray0", 0, 0, 0, 1, X11Compliance | XPMCompliance },
264     { "gray1", 3, 3, 3, 1, X11Compliance | XPMCompliance },
265     { "gray10", 26, 26, 26, 1, X11Compliance | XPMCompliance },
266     { "gray100", 255, 255, 255, 1, X11Compliance | XPMCompliance },
267     { "gray100", 255, 255, 255, 1, X11Compliance | XPMCompliance },
268     { "gray11", 28, 28, 28, 1, X11Compliance | XPMCompliance },
269     { "gray12", 31, 31, 31, 1, X11Compliance | XPMCompliance },
270     { "gray13", 33, 33, 33, 1, X11Compliance | XPMCompliance },
271     { "gray14", 36, 36, 36, 1, X11Compliance | XPMCompliance },
272     { "gray15", 38, 38, 38, 1, X11Compliance | XPMCompliance },
273     { "gray16", 41, 41, 41, 1, X11Compliance | XPMCompliance },
274     { "gray17", 43, 43, 43, 1, X11Compliance | XPMCompliance },
275     { "gray18", 46, 46, 46, 1, X11Compliance | XPMCompliance },
276     { "gray19", 48, 48, 48, 1, X11Compliance | XPMCompliance },
277     { "gray2", 5, 5, 5, 1, X11Compliance | XPMCompliance },
278     { "gray20", 51, 51, 51, 1, X11Compliance | XPMCompliance },
279     { "gray21", 54, 54, 54, 1, X11Compliance | XPMCompliance },
280     { "gray22", 56, 56, 56, 1, X11Compliance | XPMCompliance },
281     { "gray23", 59, 59, 59, 1, X11Compliance | XPMCompliance },
282     { "gray24", 61, 61, 61, 1, X11Compliance | XPMCompliance },
283     { "gray25", 64, 64, 64, 1, X11Compliance | XPMCompliance },
284     { "gray26", 66, 66, 66, 1, X11Compliance | XPMCompliance },
285     { "gray27", 69, 69, 69, 1, X11Compliance | XPMCompliance },
286     { "gray28", 71, 71, 71, 1, X11Compliance | XPMCompliance },
287     { "gray29", 74, 74, 74, 1, X11Compliance | XPMCompliance },
288     { "gray3", 8, 8, 8, 1, X11Compliance | XPMCompliance },
289     { "gray30", 77, 77, 77, 1, X11Compliance | XPMCompliance },
290     { "gray31", 79, 79, 79, 1, X11Compliance | XPMCompliance },
291     { "gray32", 82, 82, 82, 1, X11Compliance | XPMCompliance },
292     { "gray33", 84, 84, 84, 1, X11Compliance | XPMCompliance },
293     { "gray34", 87, 87, 87, 1, X11Compliance | XPMCompliance },
294     { "gray35", 89, 89, 89, 1, X11Compliance | XPMCompliance },
295     { "gray36", 92, 92, 92, 1, X11Compliance | XPMCompliance },
296     { "gray37", 94, 94, 94, 1, X11Compliance | XPMCompliance },
297     { "gray38", 97, 97, 97, 1, X11Compliance | XPMCompliance },
298     { "gray39", 99, 99, 99, 1, X11Compliance | XPMCompliance },
299     { "gray4", 10, 10, 10, 1, X11Compliance | XPMCompliance },
300     { "gray40", 102, 102, 102, 1, X11Compliance | XPMCompliance },
301     { "gray41", 105, 105, 105, 1, X11Compliance | XPMCompliance },
302     { "gray42", 107, 107, 107, 1, X11Compliance | XPMCompliance },
303     { "gray43", 110, 110, 110, 1, X11Compliance | XPMCompliance },
304     { "gray44", 112, 112, 112, 1, X11Compliance | XPMCompliance },
305     { "gray45", 115, 115, 115, 1, X11Compliance | XPMCompliance },
306     { "gray46", 117, 117, 117, 1, X11Compliance | XPMCompliance },
307     { "gray47", 120, 120, 120, 1, X11Compliance | XPMCompliance },
308     { "gray48", 122, 122, 122, 1, X11Compliance | XPMCompliance },
309     { "gray49", 125, 125, 125, 1, X11Compliance | XPMCompliance },
310     { "gray5", 13, 13, 13, 1, X11Compliance | XPMCompliance },
311     { "gray50", 127.5, 127.5, 127.5, 1, X11Compliance | XPMCompliance },
312     { "gray51", 130, 130, 130, 1, X11Compliance | XPMCompliance },
313     { "gray52", 133, 133, 133, 1, X11Compliance | XPMCompliance },
314     { "gray53", 135, 135, 135, 1, X11Compliance | XPMCompliance },
315     { "gray54", 138, 138, 138, 1, X11Compliance | XPMCompliance },
316     { "gray55", 140, 140, 140, 1, X11Compliance | XPMCompliance },
317     { "gray56", 143, 143, 143, 1, X11Compliance | XPMCompliance },
318     { "gray57", 145, 145, 145, 1, X11Compliance | XPMCompliance },
319     { "gray58", 148, 148, 148, 1, X11Compliance | XPMCompliance },
320     { "gray59", 150, 150, 150, 1, X11Compliance | XPMCompliance },
321     { "gray6", 15, 15, 15, 1, X11Compliance | XPMCompliance },
322     { "gray60", 153, 153, 153, 1, X11Compliance | XPMCompliance },
323     { "gray61", 156, 156, 156, 1, X11Compliance | XPMCompliance },
324     { "gray62", 158, 158, 158, 1, X11Compliance | XPMCompliance },
325     { "gray63", 161, 161, 161, 1, X11Compliance | XPMCompliance },
326     { "gray64", 163, 163, 163, 1, X11Compliance | XPMCompliance },
327     { "gray65", 166, 166, 166, 1, X11Compliance | XPMCompliance },
328     { "gray66", 168, 168, 168, 1, X11Compliance | XPMCompliance },
329     { "gray67", 171, 171, 171, 1, X11Compliance | XPMCompliance },
330     { "gray68", 173, 173, 173, 1, X11Compliance | XPMCompliance },
331     { "gray69", 176, 176, 176, 1, X11Compliance | XPMCompliance },
332     { "gray7", 18, 18, 18, 1, X11Compliance | XPMCompliance },
333     { "gray70", 179, 179, 179, 1, X11Compliance | XPMCompliance },
334     { "gray71", 181, 181, 181, 1, X11Compliance | XPMCompliance },
335     { "gray72", 184, 184, 184, 1, X11Compliance | XPMCompliance },
336     { "gray73", 186, 186, 186, 1, X11Compliance | XPMCompliance },
337     { "gray74", 189, 189, 189, 1, X11Compliance | XPMCompliance },
338     { "gray75", 191, 191, 191, 1, X11Compliance | XPMCompliance },
339     { "gray76", 194, 194, 194, 1, X11Compliance | XPMCompliance },
340     { "gray77", 196, 196, 196, 1, X11Compliance | XPMCompliance },
341     { "gray78", 199, 199, 199, 1, X11Compliance | XPMCompliance },
342     { "gray79", 201, 201, 201, 1, X11Compliance | XPMCompliance },
343     { "gray8", 20, 20, 20, 1, X11Compliance | XPMCompliance },
344     { "gray80", 204, 204, 204, 1, X11Compliance | XPMCompliance },
345     { "gray81", 207, 207, 207, 1, X11Compliance | XPMCompliance },
346     { "gray82", 209, 209, 209, 1, X11Compliance | XPMCompliance },
347     { "gray83", 212, 212, 212, 1, X11Compliance | XPMCompliance },
348     { "gray84", 214, 214, 214, 1, X11Compliance | XPMCompliance },
349     { "gray85", 217, 217, 217, 1, X11Compliance | XPMCompliance },
350     { "gray86", 219, 219, 219, 1, X11Compliance | XPMCompliance },
351     { "gray87", 222, 222, 222, 1, X11Compliance | XPMCompliance },
352     { "gray88", 224, 224, 224, 1, X11Compliance | XPMCompliance },
353     { "gray89", 227, 227, 227, 1, X11Compliance | XPMCompliance },
354     { "gray9", 23, 23, 23, 1, X11Compliance | XPMCompliance },
355     { "gray90", 229, 229, 229, 1, X11Compliance | XPMCompliance },
356     { "gray91", 232, 232, 232, 1, X11Compliance | XPMCompliance },
357     { "gray92", 235, 235, 235, 1, X11Compliance | XPMCompliance },
358     { "gray93", 237, 237, 237, 1, X11Compliance | XPMCompliance },
359     { "gray94", 240, 240, 240, 1, X11Compliance | XPMCompliance },
360     { "gray95", 242, 242, 242, 1, X11Compliance | XPMCompliance },
361     { "gray96", 245, 245, 245, 1, X11Compliance | XPMCompliance },
362     { "gray97", 247, 247, 247, 1, X11Compliance | XPMCompliance },
363     { "gray98", 250, 250, 250, 1, X11Compliance | XPMCompliance },
364     { "gray99", 252, 252, 252, 1, X11Compliance | XPMCompliance },
365     { "green", 0, 255, 0, 1, X11Compliance | XPMCompliance },
366     { "green1", 0, 255, 0, 1, X11Compliance },
367     { "green2", 0, 238, 0, 1, X11Compliance },
368     { "green3", 0, 205, 0, 1, X11Compliance },
369     { "green4", 0, 139, 0, 1, X11Compliance },
370     { "GreenYellow", 173, 255, 47, 1, X11Compliance | XPMCompliance },
371     { "grey", 190, 190, 190, 1, SVGCompliance | X11Compliance },
372     { "grey0", 0, 0, 0, 1, SVGCompliance | X11Compliance },
373     { "grey1", 3, 3, 3, 1, SVGCompliance | X11Compliance },
374     { "grey10", 26, 26, 26, 1, SVGCompliance | X11Compliance },
375     { "grey100", 255, 255, 255, 1, SVGCompliance | X11Compliance },
376     { "grey11", 28, 28, 28, 1, SVGCompliance | X11Compliance },
377     { "grey12", 31, 31, 31, 1, SVGCompliance | X11Compliance },
378     { "grey13", 33, 33, 33, 1, SVGCompliance | X11Compliance },
379     { "grey14", 36, 36, 36, 1, SVGCompliance | X11Compliance },
380     { "grey15", 38, 38, 38, 1, SVGCompliance | X11Compliance },
381     { "grey16", 41, 41, 41, 1, SVGCompliance | X11Compliance },
382     { "grey17", 43, 43, 43, 1, SVGCompliance | X11Compliance },
383     { "grey18", 46, 46, 46, 1, SVGCompliance | X11Compliance },
384     { "grey19", 48, 48, 48, 1, SVGCompliance | X11Compliance },
385     { "grey2", 5, 5, 5, 1, SVGCompliance | X11Compliance },
386     { "grey20", 51, 51, 51, 1, SVGCompliance | X11Compliance },
387     { "grey21", 54, 54, 54, 1, SVGCompliance | X11Compliance },
388     { "grey22", 56, 56, 56, 1, SVGCompliance | X11Compliance },
389     { "grey23", 59, 59, 59, 1, SVGCompliance | X11Compliance },
390     { "grey24", 61, 61, 61, 1, SVGCompliance | X11Compliance },
391     { "grey25", 64, 64, 64, 1, SVGCompliance | X11Compliance },
392     { "grey26", 66, 66, 66, 1, SVGCompliance | X11Compliance },
393     { "grey27", 69, 69, 69, 1, SVGCompliance | X11Compliance },
394     { "grey28", 71, 71, 71, 1, SVGCompliance | X11Compliance },
395     { "grey29", 74, 74, 74, 1, SVGCompliance | X11Compliance },
396     { "grey3", 8, 8, 8, 1, SVGCompliance | X11Compliance },
397     { "grey30", 77, 77, 77, 1, SVGCompliance | X11Compliance },
398     { "grey31", 79, 79, 79, 1, SVGCompliance | X11Compliance },
399     { "grey32", 82, 82, 82, 1, SVGCompliance | X11Compliance },
400     { "grey33", 84, 84, 84, 1, SVGCompliance | X11Compliance },
401     { "grey34", 87, 87, 87, 1, SVGCompliance | X11Compliance },
402     { "grey35", 89, 89, 89, 1, SVGCompliance | X11Compliance },
403     { "grey36", 92, 92, 92, 1, SVGCompliance | X11Compliance },
404     { "grey37", 94, 94, 94, 1, SVGCompliance | X11Compliance },
405     { "grey38", 97, 97, 97, 1, SVGCompliance | X11Compliance },
406     { "grey39", 99, 99, 99, 1, SVGCompliance | X11Compliance },
407     { "grey4", 10, 10, 10, 1, SVGCompliance | X11Compliance },
408     { "grey40", 102, 102, 102, 1, SVGCompliance | X11Compliance },
409     { "grey41", 105, 105, 105, 1, SVGCompliance | X11Compliance },
410     { "grey42", 107, 107, 107, 1, SVGCompliance | X11Compliance },
411     { "grey43", 110, 110, 110, 1, SVGCompliance | X11Compliance },
412     { "grey44", 112, 112, 112, 1, SVGCompliance | X11Compliance },
413     { "grey45", 115, 115, 115, 1, SVGCompliance | X11Compliance },
414     { "grey46", 117, 117, 117, 1, SVGCompliance | X11Compliance },
415     { "grey47", 120, 120, 120, 1, SVGCompliance | X11Compliance },
416     { "grey48", 122, 122, 122, 1, SVGCompliance | X11Compliance },
417     { "grey49", 125, 125, 125, 1, SVGCompliance | X11Compliance },
418     { "grey5", 13, 13, 13, 1, SVGCompliance | X11Compliance },
419     { "grey50", 127, 127, 127, 1, SVGCompliance | X11Compliance },
420     { "grey51", 130, 130, 130, 1, SVGCompliance | X11Compliance },
421     { "grey52", 133, 133, 133, 1, SVGCompliance | X11Compliance },
422     { "grey53", 135, 135, 135, 1, SVGCompliance | X11Compliance },
423     { "grey54", 138, 138, 138, 1, SVGCompliance | X11Compliance },
424     { "grey55", 140, 140, 140, 1, SVGCompliance | X11Compliance },
425     { "grey56", 143, 143, 143, 1, SVGCompliance | X11Compliance },
426     { "grey57", 145, 145, 145, 1, SVGCompliance | X11Compliance },
427     { "grey58", 148, 148, 148, 1, SVGCompliance | X11Compliance },
428     { "grey59", 150, 150, 150, 1, SVGCompliance | X11Compliance },
429     { "grey6", 15, 15, 15, 1, SVGCompliance | X11Compliance },
430     { "grey60", 153, 153, 153, 1, SVGCompliance | X11Compliance },
431     { "grey61", 156, 156, 156, 1, SVGCompliance | X11Compliance },
432     { "grey62", 158, 158, 158, 1, SVGCompliance | X11Compliance },
433     { "grey63", 161, 161, 161, 1, SVGCompliance | X11Compliance },
434     { "grey64", 163, 163, 163, 1, SVGCompliance | X11Compliance },
435     { "grey65", 166, 166, 166, 1, SVGCompliance | X11Compliance },
436     { "grey66", 168, 168, 168, 1, SVGCompliance | X11Compliance },
437     { "grey67", 171, 171, 171, 1, SVGCompliance | X11Compliance },
438     { "grey68", 173, 173, 173, 1, SVGCompliance | X11Compliance },
439     { "grey69", 176, 176, 176, 1, SVGCompliance | X11Compliance },
440     { "grey7", 18, 18, 18, 1, SVGCompliance | X11Compliance },
441     { "grey70", 179, 179, 179, 1, SVGCompliance | X11Compliance },
442     { "grey71", 181, 181, 181, 1, SVGCompliance | X11Compliance },
443     { "grey72", 184, 184, 184, 1, SVGCompliance | X11Compliance },
444     { "grey73", 186, 186, 186, 1, SVGCompliance | X11Compliance },
445     { "grey74", 189, 189, 189, 1, SVGCompliance | X11Compliance },
446     { "grey75", 191, 191, 191, 1, SVGCompliance | X11Compliance },
447     { "grey76", 194, 194, 194, 1, SVGCompliance | X11Compliance },
448     { "grey77", 196, 196, 196, 1, SVGCompliance | X11Compliance },
449     { "grey78", 199, 199, 199, 1, SVGCompliance | X11Compliance },
450     { "grey79", 201, 201, 201, 1, SVGCompliance | X11Compliance },
451     { "grey8", 20, 20, 20, 1, SVGCompliance | X11Compliance },
452     { "grey80", 204, 204, 204, 1, SVGCompliance | X11Compliance },
453     { "grey81", 207, 207, 207, 1, SVGCompliance | X11Compliance },
454     { "grey82", 209, 209, 209, 1, SVGCompliance | X11Compliance },
455     { "grey83", 212, 212, 212, 1, SVGCompliance | X11Compliance },
456     { "grey84", 214, 214, 214, 1, SVGCompliance | X11Compliance },
457     { "grey85", 217, 217, 217, 1, SVGCompliance | X11Compliance },
458     { "grey86", 219, 219, 219, 1, SVGCompliance | X11Compliance },
459     { "grey87", 222, 222, 222, 1, SVGCompliance | X11Compliance },
460     { "grey88", 224, 224, 224, 1, SVGCompliance | X11Compliance },
461     { "grey89", 227, 227, 227, 1, SVGCompliance | X11Compliance },
462     { "grey9", 23, 23, 23, 1, SVGCompliance | X11Compliance },
463     { "grey90", 229, 229, 229, 1, SVGCompliance | X11Compliance },
464     { "grey91", 232, 232, 232, 1, SVGCompliance | X11Compliance },
465     { "grey92", 235, 235, 235, 1, SVGCompliance | X11Compliance },
466     { "grey93", 237, 237, 237, 1, SVGCompliance | X11Compliance },
467     { "grey94", 240, 240, 240, 1, SVGCompliance | X11Compliance },
468     { "grey95", 242, 242, 242, 1, SVGCompliance | X11Compliance },
469     { "grey96", 245, 245, 245, 1, SVGCompliance | X11Compliance },
470     { "grey97", 247, 247, 247, 1, SVGCompliance | X11Compliance },
471     { "grey98", 250, 250, 250, 1, SVGCompliance | X11Compliance },
472     { "grey99", 252, 252, 252, 1, SVGCompliance | X11Compliance },
473     { "honeydew", 240, 255, 240, 1, SVGCompliance | X11Compliance | XPMCompliance },
474     { "honeydew1", 240, 255, 240, 1, X11Compliance },
475     { "honeydew2", 224, 238, 224, 1, X11Compliance },
476     { "honeydew3", 193, 205, 193, 1, X11Compliance },
477     { "honeydew4", 131, 139, 131, 1, X11Compliance },
478     { "HotPink", 255, 105, 180, 1, SVGCompliance | X11Compliance | XPMCompliance },
479     { "HotPink1", 255, 110, 180, 1, X11Compliance },
480     { "HotPink2", 238, 106, 167, 1, X11Compliance },
481     { "HotPink3", 205, 96, 144, 1, X11Compliance },
482     { "HotPink4", 139, 58, 98, 1, X11Compliance },
483     { "IndianRed", 205, 92, 92, 1, SVGCompliance | X11Compliance | XPMCompliance },
484     { "IndianRed1", 255, 106, 106, 1, X11Compliance },
485     { "IndianRed2", 238, 99, 99, 1, X11Compliance },
486     { "IndianRed3", 205, 85, 85, 1, X11Compliance },
487     { "IndianRed4", 139, 58, 58, 1, X11Compliance },
488     { "indigo", 75, 0, 130, 1, SVGCompliance },
489     { "ivory", 255, 255, 240, 1, SVGCompliance | X11Compliance | XPMCompliance },
490     { "ivory1", 255, 255, 240, 1, X11Compliance },
491     { "ivory2", 238, 238, 224, 1, X11Compliance },
492     { "ivory3", 205, 205, 193, 1, X11Compliance },
493     { "ivory4", 139, 139, 131, 1, X11Compliance },
494     { "khaki", 240, 230, 140, 1, SVGCompliance | X11Compliance | XPMCompliance },
495     { "khaki1", 255, 246, 143, 1, X11Compliance },
496     { "khaki2", 238, 230, 133, 1, X11Compliance },
497     { "khaki3", 205, 198, 115, 1, X11Compliance },
498     { "khaki4", 139, 134, 78, 1, X11Compliance },
499     { "lavender", 230, 230, 250, 1, SVGCompliance | X11Compliance | XPMCompliance },
500     { "LavenderBlush", 255, 240, 245, 1, SVGCompliance | X11Compliance | XPMCompliance },
501     { "LavenderBlush1", 255, 240, 245, 1, X11Compliance },
502     { "LavenderBlush2", 238, 224, 229, 1, X11Compliance },
503     { "LavenderBlush3", 205, 193, 197, 1, X11Compliance },
504     { "LavenderBlush4", 139, 131, 134, 1, X11Compliance },
505     { "LawnGreen", 124, 252, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
506     { "LemonChiffon", 255, 250, 205, 1, SVGCompliance | X11Compliance | XPMCompliance },
507     { "LemonChiffon1", 255, 250, 205, 1, X11Compliance },
508     { "LemonChiffon2", 238, 233, 191, 1, X11Compliance },
509     { "LemonChiffon3", 205, 201, 165, 1, X11Compliance },
510     { "LemonChiffon4", 139, 137, 112, 1, X11Compliance },
511     { "LightBlue", 173, 216, 230, 1, SVGCompliance | X11Compliance | XPMCompliance },
512     { "LightBlue1", 191, 239, 255, 1, X11Compliance },
513     { "LightBlue2", 178, 223, 238, 1, X11Compliance },
514     { "LightBlue3", 154, 192, 205, 1, X11Compliance },
515     { "LightBlue4", 104, 131, 139, 1, X11Compliance },
516     { "LightCoral", 240, 128, 128, 1, SVGCompliance | X11Compliance | XPMCompliance },
517     { "LightCyan", 224, 255, 255, 1, SVGCompliance | X11Compliance | XPMCompliance },
518     { "LightCyan1", 224, 255, 255, 1, X11Compliance },
519     { "LightCyan2", 209, 238, 238, 1, X11Compliance },
520     { "LightCyan3", 180, 205, 205, 1, X11Compliance },
521     { "LightCyan4", 122, 139, 139, 1, X11Compliance },
522     { "LightGoldenrod", 238, 221, 130, 1, X11Compliance | XPMCompliance },
523     { "LightGoldenrod1", 255, 236, 139, 1, X11Compliance },
524     { "LightGoldenrod2", 238, 220, 130, 1, X11Compliance },
525     { "LightGoldenrod3", 205, 190, 112, 1, X11Compliance },
526     { "LightGoldenrod4", 139, 129, 76, 1, X11Compliance },
527     { "LightGoldenrodYellow", 250, 250, 210, 1, SVGCompliance | X11Compliance | XPMCompliance },
528     { "LightGray", 211, 211, 211, 1, SVGCompliance | X11Compliance | XPMCompliance },
529     { "LightGreen", 144, 238, 144, 1, SVGCompliance | X11Compliance },
530     { "LightGrey", 211, 211, 211, 1, SVGCompliance | X11Compliance },
531     { "LightPink", 255, 182, 193, 1, SVGCompliance | X11Compliance | XPMCompliance },
532     { "LightPink1", 255, 174, 185, 1, X11Compliance },
533     { "LightPink2", 238, 162, 173, 1, X11Compliance },
534     { "LightPink3", 205, 140, 149, 1, X11Compliance },
535     { "LightPink4", 139, 95, 101, 1, X11Compliance },
536     { "LightSalmon", 255, 160, 122, 1, SVGCompliance | X11Compliance | XPMCompliance },
537     { "LightSalmon1", 255, 160, 122, 1, X11Compliance },
538     { "LightSalmon2", 238, 149, 114, 1, X11Compliance },
539     { "LightSalmon3", 205, 129, 98, 1, X11Compliance },
540     { "LightSalmon4", 139, 87, 66, 1, X11Compliance },
541     { "LightSeaGreen", 32, 178, 170, 1, SVGCompliance | X11Compliance | XPMCompliance },
542     { "LightSkyBlue", 135, 206, 250, 1, SVGCompliance | X11Compliance | XPMCompliance },
543     { "LightSkyBlue1", 176, 226, 255, 1, X11Compliance },
544     { "LightSkyBlue2", 164, 211, 238, 1, X11Compliance },
545     { "LightSkyBlue3", 141, 182, 205, 1, X11Compliance },
546     { "LightSkyBlue4", 96, 123, 139, 1, X11Compliance },
547     { "LightSlateBlue", 132, 112, 255, 1, X11Compliance | XPMCompliance },
548     { "LightSlateGray", 119, 136, 153, 1, SVGCompliance | X11Compliance | XPMCompliance },
549     { "LightSlateGrey", 119, 136, 153, 1, SVGCompliance | X11Compliance },
550     { "LightSteelBlue", 176, 196, 222, 1, SVGCompliance | X11Compliance | XPMCompliance },
551     { "LightSteelBlue1", 202, 225, 255, 1, X11Compliance },
552     { "LightSteelBlue2", 188, 210, 238, 1, X11Compliance },
553     { "LightSteelBlue3", 162, 181, 205, 1, X11Compliance },
554     { "LightSteelBlue4", 110, 123, 139, 1, X11Compliance },
555     { "LightYellow", 255, 255, 224, 1, SVGCompliance | X11Compliance | XPMCompliance },
556     { "LightYellow1", 255, 255, 224, 1, X11Compliance },
557     { "LightYellow2", 238, 238, 209, 1, X11Compliance },
558     { "LightYellow3", 205, 205, 180, 1, X11Compliance },
559     { "LightYellow4", 139, 139, 122, 1, X11Compliance },
560     { "lime", 0, 255, 0, 1, SVGCompliance },
561     { "LimeGreen", 50, 205, 50, 1, SVGCompliance | X11Compliance | XPMCompliance },
562     { "linen", 250, 240, 230, 1, SVGCompliance | X11Compliance | XPMCompliance },
563     { "magenta1", 255, 0, 255, 1, X11Compliance },
564     { "magenta2", 238, 0, 238, 1, X11Compliance },
565     { "magenta3", 205, 0, 205, 1, X11Compliance },
566     { "magenta4", 139, 0, 139, 1, X11Compliance },
567     { "maroon", 128, 0, 0, 1, SVGCompliance },
568     { "maroon", 176, 48, 96, 1, X11Compliance | XPMCompliance },
569     { "maroon1", 255, 52, 179, 1, X11Compliance },
570     { "maroon2", 238, 48, 167, 1, X11Compliance },
571     { "maroon3", 205, 41, 144, 1, X11Compliance },
572     { "maroon4", 139, 28, 98, 1, X11Compliance },
573     { "MediumAquamarine", 102, 205, 170, 1, SVGCompliance | X11Compliance | XPMCompliance },
574     { "MediumBlue", 0, 0, 205, 1, SVGCompliance | X11Compliance | XPMCompliance },
575     { "MediumForestGreen", 50, 129, 75, 1, X11Compliance | XPMCompliance },
576     { "MediumGoldenRod", 209, 193, 102, 1, X11Compliance | XPMCompliance },
577     { "MediumOrchid", 186, 85, 211, 1, SVGCompliance | X11Compliance | XPMCompliance },
578     { "MediumOrchid1", 224, 102, 255, 1, X11Compliance },
579     { "MediumOrchid2", 209, 95, 238, 1, X11Compliance },
580     { "MediumOrchid3", 180, 82, 205, 1, X11Compliance },
581     { "MediumOrchid4", 122, 55, 139, 1, X11Compliance },
582     { "MediumPurple", 147, 112, 219, 1, SVGCompliance | X11Compliance | XPMCompliance },
583     { "MediumPurple1", 171, 130, 255, 1, X11Compliance },
584     { "MediumPurple2", 159, 121, 238, 1, X11Compliance },
585     { "MediumPurple3", 137, 104, 205, 1, X11Compliance },
586     { "MediumPurple4", 93, 71, 139, 1, X11Compliance },
587     { "MediumSeaGreen", 60, 179, 113, 1, SVGCompliance | X11Compliance | XPMCompliance },
588     { "MediumSlateBlue", 123, 104, 238, 1, SVGCompliance | X11Compliance | XPMCompliance },
589     { "MediumSpringGreen", 0, 250, 154, 1, SVGCompliance | X11Compliance | XPMCompliance },
590     { "MediumTurquoise", 72, 209, 204, 1, SVGCompliance | X11Compliance | XPMCompliance },
591     { "MediumVioletRed", 199, 21, 133, 1, SVGCompliance | X11Compliance | XPMCompliance },
592     { "MidnightBlue", 25, 25, 112, 1, SVGCompliance | X11Compliance | XPMCompliance },
593     { "MintCream", 245, 255, 250, 1, SVGCompliance | X11Compliance | XPMCompliance },
594     { "MistyRose", 255, 228, 225, 1, SVGCompliance | X11Compliance | XPMCompliance },
595     { "MistyRose1", 255, 228, 225, 1, X11Compliance },
596     { "MistyRose2", 238, 213, 210, 1, X11Compliance },
597     { "MistyRose3", 205, 183, 181, 1, X11Compliance },
598     { "MistyRose4", 139, 125, 123, 1, X11Compliance },
599     { "moccasin", 255, 228, 181, 1, SVGCompliance | X11Compliance | XPMCompliance },
600     { "NavajoWhite", 255, 222, 173, 1, SVGCompliance | X11Compliance | XPMCompliance },
601     { "NavajoWhite1", 255, 222, 173, 1, X11Compliance },
602     { "NavajoWhite2", 238, 207, 161, 1, X11Compliance },
603     { "NavajoWhite3", 205, 179, 139, 1, X11Compliance },
604     { "NavajoWhite4", 139, 121, 94, 1, X11Compliance },
605     { "navy", 0, 0, 128, 1, SVGCompliance | X11Compliance | XPMCompliance },
606     { "NavyBlue", 0, 0, 128, 1, X11Compliance | XPMCompliance },
607     { "matte", 0, 0, 0, 0, SVGCompliance },
608     { "OldLace", 253, 245, 230, 1, SVGCompliance | X11Compliance | XPMCompliance },
609     { "olive", 128, 128, 0, 1, SVGCompliance },
610     { "OliveDrab", 107, 142, 35, 1, SVGCompliance | X11Compliance | XPMCompliance },
611     { "OliveDrab1", 192, 255, 62, 1, X11Compliance },
612     { "OliveDrab2", 179, 238, 58, 1, X11Compliance },
613     { "OliveDrab3", 154, 205, 50, 1, X11Compliance },
614     { "OliveDrab4", 105, 139, 34, 1, X11Compliance },
615     { "opaque", 0, 0, 0, 1, SVGCompliance },
616     { "orange", 255, 165, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
617     { "orange1", 255, 165, 0, 1, X11Compliance },
618     { "orange2", 238, 154, 0, 1, X11Compliance },
619     { "orange3", 205, 133, 0, 1, X11Compliance },
620     { "orange4", 139, 90, 0, 1, X11Compliance },
621     { "OrangeRed", 255, 69, 0, 1, SVGCompliance | X11Compliance | XPMCompliance },
622     { "OrangeRed1", 255, 69, 0, 1, X11Compliance },
623     { "OrangeRed2", 238, 64, 0, 1, X11Compliance },
624     { "OrangeRed3", 205, 55, 0, 1, X11Compliance },
625     { "OrangeRed4", 139, 37, 0, 1, X11Compliance },
626     { "orchid", 218, 112, 214, 1, SVGCompliance | X11Compliance | XPMCompliance },
627     { "orchid1", 255, 131, 250, 1, X11Compliance },
628     { "orchid2", 238, 122, 233, 1, X11Compliance },
629     { "orchid3", 205, 105, 201, 1, X11Compliance },
630     { "orchid4", 139, 71, 137, 1, X11Compliance },
631     { "PaleGoldenrod", 238, 232, 170, 1, SVGCompliance | X11Compliance | XPMCompliance },
632     { "PaleGreen", 152, 251, 152, 1, SVGCompliance | X11Compliance | XPMCompliance },
633     { "PaleGreen1", 154, 255, 154, 1, X11Compliance },
634     { "PaleGreen2", 144, 238, 144, 1, X11Compliance },
635     { "PaleGreen3", 124, 205, 124, 1, X11Compliance },
636     { "PaleGreen4", 84, 139, 84, 1, X11Compliance },
637     { "PaleTurquoise", 175, 238, 238, 1, SVGCompliance | X11Compliance | XPMCompliance },
638     { "PaleTurquoise1", 187, 255, 255, 1, X11Compliance },
639     { "PaleTurquoise2", 174, 238, 238, 1, X11Compliance },
640     { "PaleTurquoise3", 150, 205, 205, 1, X11Compliance },
641     { "PaleTurquoise4", 102, 139, 139, 1, X11Compliance },
642     { "PaleVioletRed", 219, 112, 147, 1, SVGCompliance | X11Compliance | XPMCompliance },
643     { "PaleVioletRed1", 255, 130, 171, 1, X11Compliance },
644     { "PaleVioletRed2", 238, 121, 159, 1, X11Compliance },
645     { "PaleVioletRed3", 205, 104, 137, 1, X11Compliance },
646     { "PaleVioletRed4", 139, 71, 93, 1, X11Compliance },
647     { "PapayaWhip", 255, 239, 213, 1, SVGCompliance | X11Compliance | XPMCompliance },
648     { "PeachPuff", 255, 218, 185, 1, SVGCompliance | X11Compliance | XPMCompliance },
649     { "PeachPuff1", 255, 218, 185, 1, X11Compliance },
650     { "PeachPuff2", 238, 203, 173, 1, X11Compliance },
651     { "PeachPuff3", 205, 175, 149, 1, X11Compliance },
652     { "PeachPuff4", 139, 119, 101, 1, X11Compliance },
653     { "peru", 205, 133, 63, 1, SVGCompliance | X11Compliance | XPMCompliance },
654     { "pink", 255, 192, 203, 1, SVGCompliance | X11Compliance | XPMCompliance },
655     { "pink1", 255, 181, 197, 1, X11Compliance },
656     { "pink2", 238, 169, 184, 1, X11Compliance },
657     { "pink3", 205, 145, 158, 1, X11Compliance },
658     { "pink4", 139, 99, 108, 1, X11Compliance },
659     { "plum", 221, 160, 221, 1, SVGCompliance | X11Compliance | XPMCompliance },
660     { "plum1", 255, 187, 255, 1, X11Compliance },
661     { "plum2", 238, 174, 238, 1, X11Compliance },
662     { "plum3", 205, 150, 205, 1, X11Compliance },
663     { "plum4", 139, 102, 139, 1, X11Compliance },
664     { "PowderBlue", 176, 224, 230, 1, SVGCompliance | X11Compliance | XPMCompliance },
665     { "purple", 128, 0, 128, 1, SVGCompliance },
666     { "purple", 160, 32, 240, 1, X11Compliance | XPMCompliance },
667     { "purple1", 155, 48, 255, 1, X11Compliance },
668     { "purple2", 145, 44, 238, 1, X11Compliance },
669     { "purple3", 125, 38, 205, 1, X11Compliance },
670     { "purple4", 85, 26, 139, 1, X11Compliance },
671     { "red1", 255, 0, 0, 1, X11Compliance },
672     { "red2", 238, 0, 0, 1, X11Compliance },
673     { "red3", 205, 0, 0, 1, X11Compliance },
674     { "red4", 139, 0, 0, 1, X11Compliance },
675     { "RosyBrown", 188, 143, 143, 1, SVGCompliance | X11Compliance | XPMCompliance },
676     { "RosyBrown1", 255, 193, 193, 1, X11Compliance },
677     { "RosyBrown2", 238, 180, 180, 1, X11Compliance },
678     { "RosyBrown3", 205, 155, 155, 1, X11Compliance },
679     { "RosyBrown4", 139, 105, 105, 1, X11Compliance },
680     { "RoyalBlue", 65, 105, 225, 1, SVGCompliance | X11Compliance | XPMCompliance },
681     { "RoyalBlue1", 72, 118, 255, 1, X11Compliance },
682     { "RoyalBlue2", 67, 110, 238, 1, X11Compliance },
683     { "RoyalBlue3", 58, 95, 205, 1, X11Compliance },
684     { "RoyalBlue4", 39, 64, 139, 1, X11Compliance },
685     { "SaddleBrown", 139, 69, 19, 1, SVGCompliance | X11Compliance | XPMCompliance },
686     { "salmon", 250, 128, 114, 1, SVGCompliance | X11Compliance | XPMCompliance },
687     { "salmon1", 255, 140, 105, 1, X11Compliance },
688     { "salmon2", 238, 130, 98, 1, X11Compliance },
689     { "salmon3", 205, 112, 84, 1, X11Compliance },
690     { "salmon4", 139, 76, 57, 1, X11Compliance },
691     { "SandyBrown", 244, 164, 96, 1, SVGCompliance | X11Compliance | XPMCompliance },
692     { "SeaGreen", 46, 139, 87, 1, SVGCompliance | X11Compliance | XPMCompliance },
693     { "SeaGreen1", 84, 255, 159, 1, X11Compliance },
694     { "SeaGreen2", 78, 238, 148, 1, X11Compliance },
695     { "SeaGreen3", 67, 205, 128, 1, X11Compliance },
696     { "SeaGreen4", 46, 139, 87, 1, X11Compliance },
697     { "seashell", 255, 245, 238, 1, SVGCompliance | X11Compliance | XPMCompliance },
698     { "seashell1", 255, 245, 238, 1, X11Compliance },
699     { "seashell2", 238, 229, 222, 1, X11Compliance },
700     { "seashell3", 205, 197, 191, 1, X11Compliance },
701     { "seashell4", 139, 134, 130, 1, X11Compliance },
702     { "sienna", 160, 82, 45, 1, SVGCompliance | X11Compliance | XPMCompliance },
703     { "sienna1", 255, 130, 71, 1, X11Compliance },
704     { "sienna2", 238, 121, 66, 1, X11Compliance },
705     { "sienna3", 205, 104, 57, 1, X11Compliance },
706     { "sienna4", 139, 71, 38, 1, X11Compliance },
707     { "silver", 192, 192, 192, 1, SVGCompliance },
708     { "SkyBlue", 135, 206, 235, 1, SVGCompliance | X11Compliance | XPMCompliance },
709     { "SkyBlue1", 135, 206, 255, 1, X11Compliance },
710     { "SkyBlue2", 126, 192, 238, 1, X11Compliance },
711     { "SkyBlue3", 108, 166, 205, 1, X11Compliance },
712     { "SkyBlue4", 74, 112, 139, 1, X11Compliance },
713     { "SlateBlue", 106, 90, 205, 1, SVGCompliance | X11Compliance | XPMCompliance },
714     { "SlateBlue1", 131, 111, 255, 1, X11Compliance },
715     { "SlateBlue2", 122, 103, 238, 1, X11Compliance },
716     { "SlateBlue3", 105, 89, 205, 1, X11Compliance },
717     { "SlateBlue4", 71, 60, 139, 1, X11Compliance },
718     { "SlateGray", 112, 128, 144, 1, SVGCompliance | X11Compliance | XPMCompliance },
719     { "SlateGray1", 198, 226, 255, 1, X11Compliance },
720     { "SlateGray2", 185, 211, 238, 1, X11Compliance },
721     { "SlateGray3", 159, 182, 205, 1, X11Compliance },
722     { "SlateGray4", 108, 123, 139, 1, X11Compliance },
723     { "SlateGrey", 112, 128, 144, 1, SVGCompliance | X11Compliance },
724     { "snow", 255, 250, 250, 1, SVGCompliance | X11Compliance | XPMCompliance },
725     { "snow1", 255, 250, 250, 1, X11Compliance },
726     { "snow2", 238, 233, 233, 1, X11Compliance },
727     { "snow3", 205, 201, 201, 1, X11Compliance },
728     { "snow4", 139, 137, 137, 1, X11Compliance },
729     { "SpringGreen", 0, 255, 127, 1, SVGCompliance | X11Compliance | XPMCompliance },
730     { "SpringGreen1", 0, 255, 127, 1, X11Compliance },
731     { "SpringGreen2", 0, 238, 118, 1, X11Compliance },
732     { "SpringGreen3", 0, 205, 102, 1, X11Compliance },
733     { "SpringGreen4", 0, 139, 69, 1, X11Compliance },
734     { "SteelBlue", 70, 130, 180, 1, SVGCompliance | X11Compliance | XPMCompliance },
735     { "SteelBlue1", 99, 184, 255, 1, X11Compliance },
736     { "SteelBlue2", 92, 172, 238, 1, X11Compliance },
737     { "SteelBlue3", 79, 148, 205, 1, X11Compliance },
738     { "SteelBlue4", 54, 100, 139, 1, X11Compliance },
739     { "tan", 210, 180, 140, 1, SVGCompliance | X11Compliance | XPMCompliance },
740     { "tan1", 255, 165, 79, 1, X11Compliance },
741     { "tan2", 238, 154, 73, 1, X11Compliance },
742     { "tan3", 205, 133, 63, 1, X11Compliance },
743     { "tan4", 139, 90, 43, 1, X11Compliance },
744     { "teal", 0, 128, 128, 1, SVGCompliance },
745     { "thistle", 216, 191, 216, 1, SVGCompliance | X11Compliance | XPMCompliance },
746     { "thistle1", 255, 225, 255, 1, X11Compliance },
747     { "thistle2", 238, 210, 238, 1, X11Compliance },
748     { "thistle3", 205, 181, 205, 1, X11Compliance },
749     { "thistle4", 139, 123, 139, 1, X11Compliance },
750     { "tomato", 255, 99, 71, 1, SVGCompliance | X11Compliance | XPMCompliance },
751     { "tomato1", 255, 99, 71, 1, X11Compliance },
752     { "tomato2", 238, 92, 66, 1, X11Compliance },
753     { "tomato3", 205, 79, 57, 1, X11Compliance },
754     { "tomato4", 139, 54, 38, 1, X11Compliance },
755     { "transparent", 0, 0, 0, 0, SVGCompliance },
756     { "turquoise", 64, 224, 208, 1, SVGCompliance | X11Compliance | XPMCompliance },
757     { "turquoise1", 0, 245, 255, 1, X11Compliance },
758     { "turquoise2", 0, 229, 238, 1, X11Compliance },
759     { "turquoise3", 0, 197, 205, 1, X11Compliance },
760     { "turquoise4", 0, 134, 139, 1, X11Compliance },
761     { "violet", 238, 130, 238, 1, SVGCompliance | X11Compliance | XPMCompliance },
762     { "VioletRed", 208, 32, 144, 1, X11Compliance | XPMCompliance },
763     { "VioletRed1", 255, 62, 150, 1, X11Compliance },
764     { "VioletRed2", 238, 58, 140, 1, X11Compliance },
765     { "VioletRed3", 205, 50, 120, 1, X11Compliance },
766     { "VioletRed4", 139, 34, 82, 1, X11Compliance },
767     { "wheat", 245, 222, 179, 1, SVGCompliance | X11Compliance | XPMCompliance },
768     { "wheat1", 255, 231, 186, 1, X11Compliance },
769     { "wheat2", 238, 216, 174, 1, X11Compliance },
770     { "wheat3", 205, 186, 150, 1, X11Compliance },
771     { "wheat4", 139, 126, 102, 1, X11Compliance },
772     { "WhiteSmoke", 245, 245, 245, 1, SVGCompliance | X11Compliance | XPMCompliance },
773     { "yellow1", 255, 255, 0, 1, X11Compliance },
774     { "yellow2", 238, 238, 0, 1, X11Compliance },
775     { "yellow3", 205, 205, 0, 1, X11Compliance },
776     { "yellow4", 139, 139, 0, 1, X11Compliance },
777     { "YellowGreen", 154, 205, 50, 1, SVGCompliance | X11Compliance | XPMCompliance }
778   };
779 \f
780 /*
781   Static declarations.
782 */
783 static LinkedListInfo
784   *color_list = (LinkedListInfo *) NULL;
785
786 static SemaphoreInfo
787   *color_semaphore = (SemaphoreInfo *) NULL;
788
789 static volatile MagickBooleanType
790   instantiate_color = MagickFalse;
791 \f
792 /*
793   Forward declarations.
794 */
795 static MagickBooleanType
796   InitializeColorList(ExceptionInfo *),
797   LoadColorLists(const char *,ExceptionInfo *);
798 \f
799 /*
800 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
801 %                                                                             %
802 %                                                                             %
803 %                                                                             %
804 +   C o l o r C o m p o n e n t G e n e s i s                                 %
805 %                                                                             %
806 %                                                                             %
807 %                                                                             %
808 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
809 %
810 %  ColorComponentGenesis() instantiates the color component.
811 %
812 %  The format of the ColorComponentGenesis method is:
813 %
814 %      MagickBooleanType ColorComponentGenesis(void)
815 %
816 */
817 MagickExport MagickBooleanType ColorComponentGenesis(void)
818 {
819   AcquireSemaphoreInfo(&color_semaphore);
820   return(MagickTrue);
821 }
822 \f
823 /*
824 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
825 %                                                                             %
826 %                                                                             %
827 %                                                                             %
828 +   C o l o r C o m p o n e n t T e r m i n u s                               %
829 %                                                                             %
830 %                                                                             %
831 %                                                                             %
832 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
833 %
834 %  ColorComponentTerminus() destroys the color component.
835 %
836 %  The format of the ColorComponentTerminus method is:
837 %
838 %      ColorComponentTerminus(void)
839 %
840 */
841
842 static void *DestroyColorElement(void *color_info)
843 {
844   register ColorInfo
845     *p;
846
847   p=(ColorInfo *) color_info;
848   if (p->exempt  == MagickFalse)
849     {
850       if (p->path != (char *) NULL)
851         p->path=DestroyString(p->path);
852       if (p->name != (char *) NULL)
853         p->name=DestroyString(p->name);
854     }
855   p=(ColorInfo *) RelinquishMagickMemory(p);
856   return((void *) NULL);
857 }
858
859 MagickExport void ColorComponentTerminus(void)
860 {
861   if (color_semaphore == (SemaphoreInfo *) NULL)
862     AcquireSemaphoreInfo(&color_semaphore);
863   LockSemaphoreInfo(color_semaphore);
864   if (color_list != (LinkedListInfo *) NULL)
865     color_list=DestroyLinkedList(color_list,DestroyColorElement);
866   instantiate_color=MagickFalse;
867   UnlockSemaphoreInfo(color_semaphore);
868   DestroySemaphoreInfo(&color_semaphore);
869 }
870 \f
871 /*
872 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
873 %                                                                             %
874 %                                                                             %
875 %                                                                             %
876 +   G e t C o l o r C o m p l i a n c e                                       %
877 %                                                                             %
878 %                                                                             %
879 %                                                                             %
880 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
881 %
882 %  GetColorInfo() searches the color list for the specified name and standards
883 %  compliance and if found returns attributes for that color.
884 %
885 %  The format of the GetColorInfo method is:
886 %
887 %      const PixelPacket *GetColorInfo(const char *name,
888 %        const ComplianceType compliance,ExceptionInfo *exception)
889 %
890 %  A description of each parameter follows:
891 %
892 %    o name: the color name.
893 %
894 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
895 %
896 %    o exception: return any errors or warnings in this structure.
897 %
898 */
899 MagickExport const ColorInfo *GetColorCompliance(const char *name,
900   const ComplianceType compliance,ExceptionInfo *exception)
901 {
902   char
903     colorname[MaxTextExtent];
904
905   register const ColorInfo
906     *p;
907
908   register char
909     *q;
910
911   assert(exception != (ExceptionInfo *) NULL);
912   if ((color_list == (LinkedListInfo *) NULL) ||
913       (instantiate_color == MagickFalse))
914     if (InitializeColorList(exception) == MagickFalse)
915       return((const ColorInfo *) NULL);
916   if ((color_list == (LinkedListInfo *) NULL) ||
917       (IsLinkedListEmpty(color_list) != MagickFalse))
918     return((const ColorInfo *) NULL);
919   if ((name == (const char *) NULL) || (LocaleCompare(name,"*") == 0))
920     return((const ColorInfo *) GetValueFromLinkedList(color_list,0));
921   /*
922     Strip names of whitespace.
923   */
924   (void) CopyMagickString(colorname,name,MaxTextExtent);
925   for (q=colorname; *q != '\0'; q++)
926   {
927     if (isspace((int) ((unsigned char) *q)) == 0)
928       continue;
929     (void) CopyMagickString(q,q+1,MaxTextExtent);
930     q--;
931   }
932   /*
933     Search for color tag.
934   */
935   LockSemaphoreInfo(color_semaphore);
936   ResetLinkedListIterator(color_list);
937   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
938   while (p != (const ColorInfo *) NULL)
939   {
940     if (((p->compliance & compliance) != 0) &&
941         (LocaleCompare(colorname,p->name) == 0))
942       break;
943     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
944   }
945   if (p == (ColorInfo *) NULL)
946     (void) ThrowMagickException(exception,GetMagickModule(),OptionWarning,
947       "UnrecognizedColor","`%s'",name);
948   else
949     (void) InsertValueInLinkedList(color_list,0,
950       RemoveElementByValueFromLinkedList(color_list,p));
951   UnlockSemaphoreInfo(color_semaphore);
952   return(p);
953 }
954 \f
955 /*
956 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
957 %                                                                             %
958 %                                                                             %
959 %                                                                             %
960 +   G e t C o l o r I n f o                                                   %
961 %                                                                             %
962 %                                                                             %
963 %                                                                             %
964 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
965 %
966 %  GetColorInfo() searches the color list for the specified name and if found
967 %  returns attributes for that color.
968 %
969 %  The format of the GetColorInfo method is:
970 %
971 %      const PixelPacket *GetColorInfo(const char *name,
972 %        ExceptionInfo *exception)
973 %
974 %  A description of each parameter follows:
975 %
976 %    o color_info: search the color list for the specified name and if found
977 %      return attributes for that color.
978 %
979 %    o name: the color name.
980 %
981 %    o exception: return any errors or warnings in this structure.
982 %
983 */
984 MagickExport const ColorInfo *GetColorInfo(const char *name,
985   ExceptionInfo *exception)
986 {
987   return(GetColorCompliance(name,AllCompliance,exception));
988 }
989 \f
990 /*
991 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
992 %                                                                             %
993 %                                                                             %
994 %                                                                             %
995 +   C o n c a t e n a t e C o l o r C o m p o n e n t                         %
996 %                                                                             %
997 %                                                                             %
998 %                                                                             %
999 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1000 %
1001 %  ConcatenateColorComponent() returns the pixel as a canonical string.
1002 %
1003 %  The format of the ConcatenateColorComponent() method is:
1004 %
1005 %      void ConcatenateColorComponent(const MagickPixelPacket *pixel,
1006 %        const ChannelType channel,const ComplianceType compliance,char *tuple)
1007 %
1008 %  A description of each parameter follows.
1009 %
1010 %    o pixel:  The pixel.
1011 %
1012 %    channel:  The channel.
1013 %
1014 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
1015 %
1016 %    tuple:  The color tuple.
1017 %
1018 */
1019 MagickExport void ConcatenateColorComponent(const MagickPixelPacket *pixel,
1020   const ChannelType channel,const ComplianceType compliance,char *tuple)
1021 {
1022   char
1023     component[MaxTextExtent];
1024
1025   MagickRealType
1026     color;
1027
1028   color=0.0;
1029   switch (channel)
1030   {
1031     case RedChannel:
1032     {
1033       color=pixel->red;
1034       break;
1035     }
1036     case GreenChannel:
1037     {
1038       color=pixel->green;
1039       break;
1040     }
1041     case BlueChannel:
1042     {
1043       color=pixel->blue;
1044       break;
1045     }
1046     case AlphaChannel:
1047     {
1048       color=QuantumRange-pixel->opacity;
1049       break;
1050     }
1051     case IndexChannel:
1052     {
1053       color=pixel->index;
1054       break;
1055     }
1056     default:
1057       break;
1058   }
1059   if (compliance != SVGCompliance)
1060     {
1061       if (pixel->depth > 16)
1062         {
1063           (void) FormatMagickString(component,MaxTextExtent,"%10lu",
1064             (unsigned long) ScaleQuantumToLong(ClampToQuantum(color)));
1065           (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1066           return;
1067         }
1068       if (pixel->depth > 8)
1069         {
1070           (void) FormatMagickString(component,MaxTextExtent,"%5d",
1071             ScaleQuantumToShort(ClampToQuantum(color)));
1072           (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1073           return;
1074         }
1075       (void) FormatMagickString(component,MaxTextExtent,"%3d",
1076         ScaleQuantumToChar(ClampToQuantum(color)));
1077       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1078       return;
1079     }
1080   if (channel == OpacityChannel)
1081     {
1082       (void) FormatMagickString(component,MaxTextExtent,"%g",
1083         (double) (QuantumScale*color));
1084       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1085       return;
1086     }
1087   if ((pixel->colorspace == HSLColorspace) ||
1088       (pixel->colorspace == HSBColorspace))
1089     {
1090       (void) FormatMagickString(component,MaxTextExtent,"%g%%",
1091         (double) (100.0*QuantumScale*color));
1092       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1093       return;
1094     }
1095   if (pixel->depth > 8)
1096     {
1097       (void) FormatMagickString(component,MaxTextExtent,"%g%%",
1098         (double) (100.0*QuantumScale*color));
1099       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1100       return;
1101     }
1102   (void) FormatMagickString(component,MaxTextExtent,"%d",
1103     ScaleQuantumToChar(ClampToQuantum(color)));
1104   (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1105 }
1106 \f
1107 /*
1108 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1109 %                                                                             %
1110 %                                                                             %
1111 %                                                                             %
1112 %   G e t C o l o r I n f o L i s t                                           %
1113 %                                                                             %
1114 %                                                                             %
1115 %                                                                             %
1116 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1117 %
1118 %  GetColorInfoList() returns any colors that match the specified pattern.
1119 %
1120 %  The format of the GetColorInfoList function is:
1121 %
1122 %      const ColorInfo **GetColorInfoList(const char *pattern,
1123 %        size_t *number_colors,ExceptionInfo *exception)
1124 %
1125 %  A description of each parameter follows:
1126 %
1127 %    o pattern: Specifies a pointer to a text string containing a pattern.
1128 %
1129 %    o number_colors:  This integer returns the number of colors in the list.
1130 %
1131 %    o exception: return any errors or warnings in this structure.
1132 %
1133 */
1134
1135 #if defined(__cplusplus) || defined(c_plusplus)
1136 extern "C" {
1137 #endif
1138
1139 static int ColorInfoCompare(const void *x,const void *y)
1140 {
1141   const ColorInfo
1142     **p,
1143     **q;
1144
1145   p=(const ColorInfo **) x,
1146   q=(const ColorInfo **) y;
1147   if (LocaleCompare((*p)->path,(*q)->path) == 0)
1148     return(LocaleCompare((*p)->name,(*q)->name));
1149   return(LocaleCompare((*p)->path,(*q)->path));
1150 }
1151
1152 #if defined(__cplusplus) || defined(c_plusplus)
1153 }
1154 #endif
1155
1156 MagickExport const ColorInfo **GetColorInfoList(const char *pattern,
1157   size_t *number_colors,ExceptionInfo *exception)
1158 {
1159   const ColorInfo
1160     **colors;
1161
1162   register const ColorInfo
1163     *p;
1164
1165   register ssize_t
1166     i;
1167
1168   /*
1169     Allocate color list.
1170   */
1171   assert(pattern != (char *) NULL);
1172   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
1173   assert(number_colors != (size_t *) NULL);
1174   *number_colors=0;
1175   p=GetColorInfo("*",exception);
1176   if (p == (const ColorInfo *) NULL)
1177     return((const ColorInfo **) NULL);
1178   colors=(const ColorInfo **) AcquireQuantumMemory((size_t)
1179     GetNumberOfElementsInLinkedList(color_list)+1UL,sizeof(*colors));
1180   if (colors == (const ColorInfo **) NULL)
1181     return((const ColorInfo **) NULL);
1182   /*
1183     Generate color list.
1184   */
1185   LockSemaphoreInfo(color_semaphore);
1186   ResetLinkedListIterator(color_list);
1187   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1188   for (i=0; p != (const ColorInfo *) NULL; )
1189   {
1190     if ((p->stealth == MagickFalse) &&
1191         (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
1192       colors[i++]=p;
1193     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1194   }
1195   UnlockSemaphoreInfo(color_semaphore);
1196   qsort((void *) colors,(size_t) i,sizeof(*colors),ColorInfoCompare);
1197   colors[i]=(ColorInfo *) NULL;
1198   *number_colors=(size_t) i;
1199   return(colors);
1200 }
1201 \f
1202 /*
1203 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1204 %                                                                             %
1205 %                                                                             %
1206 %                                                                             %
1207 %   G e t C o l o r L i s t                                                   %
1208 %                                                                             %
1209 %                                                                             %
1210 %                                                                             %
1211 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1212 %
1213 %  GetColorList() returns any colors that match the specified pattern.
1214 %
1215 %  The format of the GetColorList function is:
1216 %
1217 %      char **GetColorList(const char *pattern,size_t *number_colors,
1218 %        ExceptionInfo *exception)
1219 %
1220 %  A description of each parameter follows:
1221 %
1222 %    o pattern: Specifies a pointer to a text string containing a pattern.
1223 %
1224 %    o number_colors:  This integer returns the number of colors in the list.
1225 %
1226 %    o exception: return any errors or warnings in this structure.
1227 %
1228 */
1229
1230 #if defined(__cplusplus) || defined(c_plusplus)
1231 extern "C" {
1232 #endif
1233
1234 static int ColorCompare(const void *x,const void *y)
1235 {
1236   register const char
1237     **p,
1238     **q;
1239
1240   p=(const char **) x;
1241   q=(const char **) y;
1242   return(LocaleCompare(*p,*q));
1243 }
1244
1245 #if defined(__cplusplus) || defined(c_plusplus)
1246 }
1247 #endif
1248
1249 MagickExport char **GetColorList(const char *pattern,
1250   size_t *number_colors,ExceptionInfo *exception)
1251 {
1252   char
1253     **colors;
1254
1255   register const ColorInfo
1256     *p;
1257
1258   register ssize_t
1259     i;
1260
1261   /*
1262     Allocate color list.
1263   */
1264   assert(pattern != (char *) NULL);
1265   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
1266   assert(number_colors != (size_t *) NULL);
1267   *number_colors=0;
1268   p=GetColorInfo("*",exception);
1269   if (p == (const ColorInfo *) NULL)
1270     return((char **) NULL);
1271   colors=(char **) AcquireQuantumMemory((size_t)
1272     GetNumberOfElementsInLinkedList(color_list)+1UL,sizeof(*colors));
1273   if (colors == (char **) NULL)
1274     return((char **) NULL);
1275   /*
1276     Generate color list.
1277   */
1278   LockSemaphoreInfo(color_semaphore);
1279   ResetLinkedListIterator(color_list);
1280   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1281   for (i=0; p != (const ColorInfo *) NULL; )
1282   {
1283     if ((p->stealth == MagickFalse) &&
1284         (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
1285       colors[i++]=ConstantString(p->name);
1286     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1287   }
1288   UnlockSemaphoreInfo(color_semaphore);
1289   qsort((void *) colors,(size_t) i,sizeof(*colors),ColorCompare);
1290   colors[i]=(char *) NULL;
1291   *number_colors=(size_t) i;
1292   return(colors);
1293 }
1294 \f
1295 /*
1296 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1297 %                                                                             %
1298 %                                                                             %
1299 %                                                                             %
1300 +   G e t C o l o r T u p l e                                                 %
1301 %                                                                             %
1302 %                                                                             %
1303 %                                                                             %
1304 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1305 %
1306 %  GetColorTuple() returns a color as a color tuple string (e.g. rgba(255,0,0))
1307 %  or hex string (e.g. #FF0000).
1308 %
1309 %  The format of the GetColorTuple method is:
1310 %
1311 %      GetColorTuple(const MagickPixelPacket *pixel,const MagickBooleanType hex,
1312 %        char *tuple)
1313 %
1314 %  A description of each parameter follows.
1315 %
1316 %    o pixel: the pixel.
1317 %
1318 %    o hex: A value other than zero returns the tuple in a hexidecimal format.
1319 %
1320 %    o tuple: Return the color tuple as this string.
1321 %
1322 */
1323
1324 static void ConcatentateHexColorComponent(const MagickPixelPacket *pixel,
1325   const ChannelType channel,char *tuple)
1326 {
1327   char
1328     component[MaxTextExtent];
1329
1330   MagickRealType
1331     color;
1332
1333   color=0.0;
1334   switch (channel)
1335   {
1336     case RedChannel:
1337     {
1338       color=pixel->red;
1339       break;
1340     }
1341     case GreenChannel:
1342     {
1343       color=pixel->green;
1344       break;
1345     }
1346     case BlueChannel:
1347     {
1348       color=pixel->blue;
1349       break;
1350     }
1351     case OpacityChannel:
1352     {
1353       color=(MagickRealType) QuantumRange-pixel->opacity;
1354       break;
1355     }
1356     case IndexChannel:
1357     {
1358       color=pixel->index;
1359       break;
1360     }
1361     default:
1362       break;
1363   }
1364   if (pixel->depth > 32)
1365     {
1366       (void) FormatMagickString(component,MaxTextExtent,"%08lX",
1367         (unsigned long) ScaleQuantumToLong(ClampToQuantum(color)));
1368       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1369       return;
1370     }
1371   if (pixel->depth > 16)
1372     {
1373       (void) FormatMagickString(component,MaxTextExtent,"%08X",
1374         (unsigned int) ScaleQuantumToLong(ClampToQuantum(color)));
1375       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1376       return;
1377     }
1378   if (pixel->depth > 8)
1379     {
1380       (void) FormatMagickString(component,MaxTextExtent,"%04X",
1381         ScaleQuantumToShort(ClampToQuantum(color)));
1382       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1383       return;
1384     }
1385   (void) FormatMagickString(component,MaxTextExtent,"%02X",
1386     ScaleQuantumToChar(ClampToQuantum(color)));
1387   (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1388   return;
1389 }
1390
1391 MagickExport void GetColorTuple(const MagickPixelPacket *pixel,
1392   const MagickBooleanType hex,char *tuple)
1393 {
1394   MagickPixelPacket
1395     color;
1396
1397   assert(pixel != (const MagickPixelPacket *) NULL);
1398   assert(tuple != (char *) NULL);
1399   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",tuple);
1400   *tuple='\0';
1401   if (hex != MagickFalse)
1402     {
1403       /*
1404         Convert pixel to hex color.
1405       */
1406       (void) ConcatenateMagickString(tuple,"#",MaxTextExtent);
1407       ConcatentateHexColorComponent(pixel,RedChannel,tuple);
1408       ConcatentateHexColorComponent(pixel,GreenChannel,tuple);
1409       ConcatentateHexColorComponent(pixel,BlueChannel,tuple);
1410       if (pixel->colorspace == CMYKColorspace)
1411         ConcatentateHexColorComponent(pixel,IndexChannel,tuple);
1412       if ((pixel->matte != MagickFalse) && (pixel->opacity != OpaqueOpacity))
1413         ConcatentateHexColorComponent(pixel,OpacityChannel,tuple);
1414       return;
1415     }
1416   /*
1417     Convert pixel to rgb() or cmyk() color.
1418   */
1419   color=(*pixel);
1420   if (color.depth > 8)
1421     {
1422 #define SVGCompliant(component) ((MagickRealType) \
1423    ScaleCharToQuantum(ScaleQuantumToChar(ClampToQuantum(component))));
1424
1425       MagickStatusType
1426         status;
1427
1428       /*
1429         SVG requires color depths > 8 expressed as percentages.
1430       */
1431       status=color.red == SVGCompliant(color.red);
1432       status&=color.green == SVGCompliant(color.green);
1433       status&=color.blue == SVGCompliant(color.blue);
1434       if (color.colorspace != CMYKColorspace)
1435         status&=color.index == SVGCompliant(color.index);
1436       if (color.matte != MagickFalse)
1437         status&=color.opacity == SVGCompliant(color.opacity);
1438       if (status != MagickFalse)
1439         color.depth=8;
1440     }
1441   (void) ConcatenateMagickString(tuple,MagickOptionToMnemonic(
1442     MagickColorspaceOptions,(ssize_t) color.colorspace),MaxTextExtent);
1443   if (color.matte != MagickFalse)
1444     (void) ConcatenateMagickString(tuple,"a",MaxTextExtent);
1445   (void) ConcatenateMagickString(tuple,"(",MaxTextExtent);
1446   ConcatenateColorComponent(&color,RedChannel,SVGCompliance,tuple);
1447   (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1448   ConcatenateColorComponent(&color,GreenChannel,SVGCompliance,tuple);
1449   (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1450   ConcatenateColorComponent(&color,BlueChannel,SVGCompliance,tuple);
1451   if (color.colorspace == CMYKColorspace)
1452     {
1453       (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1454       ConcatenateColorComponent(&color,IndexChannel,SVGCompliance,tuple);
1455     }
1456   if (color.matte != MagickFalse)
1457     {
1458       (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1459       ConcatenateColorComponent(&color,AlphaChannel,SVGCompliance,tuple);
1460     }
1461   (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
1462   LocaleLower(tuple);
1463   return;
1464 }
1465 \f
1466 /*
1467 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1468 %                                                                             %
1469 %                                                                             %
1470 %                                                                             %
1471 +   I n i t i a l i z e C o l o r L i s t                                     %
1472 %                                                                             %
1473 %                                                                             %
1474 %                                                                             %
1475 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1476 %
1477 %  InitializeColorList() initializes the color list.
1478 %
1479 %  The format of the InitializeColorList method is:
1480 %
1481 %      MagickBooleanType InitializeColorList(ExceptionInfo *exception)
1482 %
1483 %  A description of each parameter follows.
1484 %
1485 %    o exception: return any errors or warnings in this structure.
1486 %
1487 */
1488 static MagickBooleanType InitializeColorList(ExceptionInfo *exception)
1489 {
1490   if ((color_list == (LinkedListInfo *) NULL) &&
1491       (instantiate_color == MagickFalse))
1492     {
1493       if (color_semaphore == (SemaphoreInfo *) NULL)
1494         AcquireSemaphoreInfo(&color_semaphore);
1495       LockSemaphoreInfo(color_semaphore);
1496       if ((color_list == (LinkedListInfo *) NULL) &&
1497           (instantiate_color == MagickFalse))
1498         {
1499           (void) LoadColorLists(ColorFilename,exception);
1500           instantiate_color=MagickTrue;
1501         }
1502       UnlockSemaphoreInfo(color_semaphore);
1503     }
1504   return(color_list != (LinkedListInfo *) NULL ? MagickTrue : MagickFalse);
1505 }
1506 \f
1507 /*
1508 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1509 %                                                                             %
1510 %                                                                             %
1511 %                                                                             %
1512 +   I s C o l o r S i m i l a r                                               %
1513 %                                                                             %
1514 %                                                                             %
1515 %                                                                             %
1516 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1517 %
1518 %  IsColorSimilar() returns MagickTrue if the distance between two colors is
1519 %  less than the specified distance in a linear three dimensional color space.
1520 %  This method is used by ColorFloodFill() and other algorithms which
1521 %  compare two colors.
1522 %
1523 %  The format of the IsColorSimilar method is:
1524 %
1525 %      void IsColorSimilar(const Image *image,const PixelPacket *p,
1526 %        const PixelPacket *q)
1527 %
1528 %  A description of each parameter follows:
1529 %
1530 %    o image: the image.
1531 %
1532 %    o p: Pixel p.
1533 %
1534 %    o q: Pixel q.
1535 %
1536 */
1537
1538 static inline double MagickMax(const double x,const double y)
1539 {
1540   if (x > y)
1541     return(x);
1542   return(y);
1543 }
1544
1545 MagickExport MagickBooleanType IsColorSimilar(const Image *image,
1546   const PixelPacket *p,const PixelPacket *q)
1547 {
1548   MagickRealType
1549     fuzz,
1550     pixel;
1551
1552   register MagickRealType
1553     alpha,
1554     beta,
1555     distance;
1556
1557   if ((image->fuzz == 0.0) && (image->matte == MagickFalse))
1558     return(IsColorEqual(p,q));
1559   fuzz=3.0*MagickMax(image->fuzz,MagickSQ1_2)*MagickMax(image->fuzz,
1560     MagickSQ1_2);
1561   alpha=1.0;
1562   beta=1.0;
1563   if (image->matte != MagickFalse)
1564     {
1565       alpha=(MagickRealType) (QuantumScale*(GetAlphaPixelComponent(p)));
1566       beta=(MagickRealType) (QuantumScale*GetAlphaPixelComponent(q));
1567     }
1568   pixel=alpha*p->red-beta*q->red;
1569   distance=pixel*pixel;
1570   if (distance > fuzz)
1571     return(MagickFalse);
1572   pixel=alpha*p->green-beta*q->green;
1573   distance+=pixel*pixel;
1574   if (distance > fuzz)
1575     return(MagickFalse);
1576   pixel=alpha*p->blue-beta*q->blue;
1577   distance+=pixel*pixel;
1578   if (distance > fuzz)
1579     return(MagickFalse);
1580   return(MagickTrue);
1581 }
1582 \f
1583 /*
1584 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1585 %                                                                             %
1586 %                                                                             %
1587 %                                                                             %
1588 +   I s I m a g e S i m i l a r                                               %
1589 %                                                                             %
1590 %                                                                             %
1591 %                                                                             %
1592 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1593 %
1594 %  IsImageSimilar() returns true if the target is similar to a region of the
1595 %  image.
1596 %
1597 %  The format of the IsImageSimilar method is:
1598 %
1599 %      MagickBooleanType IsImageSimilar(const Image *image,
1600 %        const Image *target_image,ssize_t *x_offset,ssize_t *y_offset,
1601 %        ExceptionInfo *exception)
1602 %
1603 %  A description of each parameter follows:
1604 %
1605 %    o image: the image.
1606 %
1607 %    o target_image: the target image.
1608 %
1609 %    o x_offset: On input the starting x position to search for a match;
1610 %      on output the x position of the first match found.
1611 %
1612 %    o y_offset: On input the starting y position to search for a match;
1613 %      on output the y position of the first match found.
1614 %
1615 %    o exception: return any errors or warnings in this structure.
1616 %
1617 */
1618 MagickExport MagickBooleanType IsImageSimilar(const Image *image,
1619   const Image *target_image,ssize_t *x_offset,ssize_t *y_offset,
1620   ExceptionInfo *exception)
1621 {
1622 #define SearchImageText  "  Searching image...  "
1623
1624   CacheView
1625     *image_view,
1626     *target_view;
1627
1628   ssize_t
1629     j,
1630     y;
1631
1632   MagickBooleanType
1633     status;
1634
1635   MagickPixelPacket
1636     target,
1637     pixel;
1638
1639   register const PixelPacket
1640     *p,
1641     *q;
1642
1643   register const IndexPacket
1644     *indexes,
1645     *target_indexes;
1646
1647   register ssize_t
1648     i,
1649     x;
1650
1651   assert(image != (Image *) NULL);
1652   assert(image->signature == MagickSignature);
1653   if (image->debug != MagickFalse)
1654     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1655   assert(target_image != (Image *) NULL);
1656   assert(target_image->signature == MagickSignature);
1657   assert(x_offset != (ssize_t *) NULL);
1658   assert(y_offset != (ssize_t *) NULL);
1659   assert(exception != (ExceptionInfo *) NULL);
1660   x=0;
1661   GetMagickPixelPacket(image,&pixel);
1662   GetMagickPixelPacket(image,&target);
1663   image_view=AcquireCacheView(image);
1664   target_view=AcquireCacheView(target_image);
1665   for (y=(*y_offset); y < (ssize_t) image->rows; y++)
1666   {
1667     for (x=y == 0 ? *x_offset : 0; x < (ssize_t) image->columns; x++)
1668     {
1669       for (j=0; j < (ssize_t) target_image->rows; j++)
1670       {
1671         for (i=0; i < (ssize_t) target_image->columns; i++)
1672         {
1673           p=GetCacheViewVirtualPixels(image_view,x+i,y+j,1,1,exception);
1674           indexes=GetCacheViewVirtualIndexQueue(image_view);
1675           SetMagickPixelPacket(image,p,indexes,&pixel);
1676           q=GetCacheViewVirtualPixels(target_view,i,j,1,1,exception);
1677           target_indexes=GetCacheViewVirtualIndexQueue(target_view);
1678           SetMagickPixelPacket(image,q,target_indexes,&target);
1679           if (IsMagickColorSimilar(&pixel,&target) == MagickFalse)
1680             break;
1681         }
1682         if (i < (ssize_t) target_image->columns)
1683           break;
1684       }
1685       if (j == (ssize_t) target_image->rows)
1686         break;
1687     }
1688     if (x < (ssize_t) image->columns)
1689       break;
1690     if (image->progress_monitor != (MagickProgressMonitor) NULL)
1691       {
1692         MagickBooleanType
1693           proceed;
1694
1695         proceed=SetImageProgress(image,SearchImageText,(MagickOffsetType) y,
1696           image->rows);
1697         if (proceed == MagickFalse)
1698           status=MagickFalse;
1699       }
1700   }
1701   target_view=DestroyCacheView(target_view);
1702   image_view=DestroyCacheView(image_view);
1703   *x_offset=x;
1704   *y_offset=y;
1705   return(y < (ssize_t) image->rows ? MagickTrue : MagickFalse);
1706 }
1707 \f
1708 /*
1709 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1710 %                                                                             %
1711 %                                                                             %
1712 %                                                                             %
1713 +   I s M a g i c k C o l o r S i m i l a r                                   %
1714 %                                                                             %
1715 %                                                                             %
1716 %                                                                             %
1717 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1718 %
1719 %  IsMagickColorSimilar() returns true if the distance between two colors is
1720 %  less than the specified distance in a linear three dimensional color space.
1721 %  This method is used by ColorFloodFill() and other algorithms which
1722 %  compare two colors.
1723 %
1724 %  The format of the IsMagickColorSimilar method is:
1725 %
1726 %      MagickBooleanType IsMagickColorSimilar(const MagickPixelPacket *p,
1727 %        const MagickPixelPacket *q)
1728 %
1729 %  A description of each parameter follows:
1730 %
1731 %    o p: Pixel p.
1732 %
1733 %    o q: Pixel q.
1734 %
1735 */
1736 MagickExport MagickBooleanType IsMagickColorSimilar(const MagickPixelPacket *p,
1737   const MagickPixelPacket *q)
1738 {
1739   MagickRealType
1740     fuzz,
1741     pixel;
1742
1743   register MagickRealType
1744     alpha,
1745     beta,
1746     distance;
1747
1748   if ((p->fuzz == 0.0) && (q->fuzz == 0.0))
1749     return(IsMagickColorEqual(p,q));
1750   if (p->fuzz == 0.0)
1751     fuzz=MagickMax(q->fuzz,MagickSQ1_2)*MagickMax(q->fuzz,MagickSQ1_2);
1752   else
1753     if (q->fuzz == 0.0)
1754       fuzz=3.0*MagickMax(p->fuzz,MagickSQ1_2)*MagickMax(p->fuzz,MagickSQ1_2);
1755     else
1756       fuzz=3.0*MagickMax(p->fuzz,MagickSQ1_2)*MagickMax(q->fuzz,MagickSQ1_2);
1757   alpha=1.0;
1758   if (p->matte != MagickFalse)
1759     alpha=(MagickRealType) (QuantumScale*(GetAlphaPixelComponent(p)));
1760   beta=1.0;
1761   if (q->matte != MagickFalse)
1762     beta=(MagickRealType) (QuantumScale*GetAlphaPixelComponent(q));
1763   if (p->colorspace == CMYKColorspace)
1764     {
1765       alpha*=(MagickRealType) (QuantumScale*(QuantumRange-p->index));
1766       beta*=(MagickRealType) (QuantumScale*(QuantumRange-q->index));
1767     }
1768   pixel=alpha*p->red-beta*q->red;
1769   if ((p->colorspace == HSLColorspace) || (p->colorspace == HSBColorspace) ||
1770       (p->colorspace == HWBColorspace))
1771     {
1772       if (fabs(p->red-q->red) > (QuantumRange/2))
1773         {
1774           if (p->red > (QuantumRange/2))
1775             pixel=alpha*(p->red-QuantumRange)-beta*q->red;
1776           else
1777             pixel=alpha*p->red-beta*(q->red-QuantumRange);
1778         }
1779         pixel*=2;
1780      }
1781   distance=pixel*pixel;
1782   if (distance > fuzz)
1783     return(MagickFalse);
1784   pixel=alpha*p->green-beta*q->green;
1785   distance+=pixel*pixel;
1786   if (distance > fuzz)
1787     return(MagickFalse);
1788   pixel=alpha*p->blue-beta*q->blue;
1789   distance+=pixel*pixel;
1790   if (distance > fuzz)
1791     return(MagickFalse);
1792   pixel=p->opacity-q->opacity;
1793   distance+=pixel*pixel;
1794   if (distance > fuzz)
1795     return(MagickFalse);
1796   return(MagickTrue);
1797 }
1798 \f
1799 /*
1800 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1801 %                                                                             %
1802 %                                                                             %
1803 %                                                                             %
1804 +   I s O p a c i t y S i m i l a r                                           %
1805 %                                                                             %
1806 %                                                                             %
1807 %                                                                             %
1808 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1809 %
1810 %  IsOpacitySimilar() returns true if the distance between two opacity
1811 %  values is less than the specified distance in a linear color space.  This
1812 %  method is used by MatteFloodFill() and other algorithms which compare
1813 %  two opacity values.
1814 %
1815 %  The format of the IsOpacitySimilar method is:
1816 %
1817 %      void IsOpacitySimilar(const Image *image,const PixelPacket *p,
1818 %        const PixelPacket *q)
1819 %
1820 %  A description of each parameter follows:
1821 %
1822 %    o image: the image.
1823 %
1824 %    o p: Pixel p.
1825 %
1826 %    o q: Pixel q.
1827 %
1828 */
1829 MagickExport MagickBooleanType IsOpacitySimilar(const Image *image,
1830   const PixelPacket *p,const PixelPacket *q)
1831 {
1832   MagickRealType
1833     fuzz,
1834     pixel;
1835
1836   register MagickRealType
1837     distance;
1838
1839   if (image->matte == MagickFalse)
1840     return(MagickTrue);
1841   if (p->opacity == q->opacity)
1842     return(MagickTrue);
1843   fuzz=MagickMax(image->fuzz,MagickSQ1_2)*MagickMax(image->fuzz,MagickSQ1_2);
1844   pixel=(MagickRealType) p->opacity-(MagickRealType) q->opacity;
1845   distance=pixel*pixel;
1846   if (distance > fuzz)
1847     return(MagickFalse);
1848   return(MagickTrue);
1849 }
1850 \f
1851 /*
1852 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1853 %                                                                             %
1854 %                                                                             %
1855 %                                                                             %
1856 %  L i s t C o l o r I n f o                                                  %
1857 %                                                                             %
1858 %                                                                             %
1859 %                                                                             %
1860 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1861 %
1862 %  ListColorInfo() lists color names to the specified file.  Color names
1863 %  are a convenience.  Rather than defining a color by its red, green, and
1864 %  blue intensities just use a color name such as white, blue, or yellow.
1865 %
1866 %  The format of the ListColorInfo method is:
1867 %
1868 %      MagickBooleanType ListColorInfo(FILE *file,ExceptionInfo *exception)
1869 %
1870 %  A description of each parameter follows.
1871 %
1872 %    o file:  List color names to this file handle.
1873 %
1874 %    o exception: return any errors or warnings in this structure.
1875 %
1876 */
1877 MagickExport MagickBooleanType ListColorInfo(FILE *file,
1878   ExceptionInfo *exception)
1879 {
1880   char
1881     tuple[MaxTextExtent];
1882
1883   const char
1884     *path;
1885
1886   const ColorInfo
1887     **color_info;
1888
1889   register ssize_t
1890     i;
1891
1892   size_t
1893     number_colors;
1894
1895   /*
1896     List name and attributes of each color in the list.
1897   */
1898   if (file == (const FILE *) NULL)
1899     file=stdout;
1900   color_info=GetColorInfoList("*",&number_colors,exception);
1901   if (color_info == (const ColorInfo **) NULL)
1902     return(MagickFalse);
1903   path=(const char *) NULL;
1904   for (i=0; i < (ssize_t) number_colors; i++)
1905   {
1906     if (color_info[i]->stealth != MagickFalse)
1907       continue;
1908     if ((path == (const char *) NULL) ||
1909         (LocaleCompare(path,color_info[i]->path) != 0))
1910       {
1911         if (color_info[i]->path != (char *) NULL)
1912           (void) fprintf(file,"\nPath: %s\n\n",color_info[i]->path);
1913         (void) fprintf(file,"Name                  Color                  "
1914           "                       Compliance\n");
1915         (void) fprintf(file,"-------------------------------------------------"
1916           "------------------------------\n");
1917       }
1918     path=color_info[i]->path;
1919     (void) fprintf(file,"%-21.21s ",color_info[i]->name);
1920     GetColorTuple(&color_info[i]->color,MagickFalse,tuple);
1921     (void) fprintf(file,"%-45.45s ",tuple);
1922     if ((color_info[i]->compliance & SVGCompliance) != 0)
1923       (void) fprintf(file,"SVG ");
1924     if ((color_info[i]->compliance & X11Compliance) != 0)
1925       (void) fprintf(file,"X11 ");
1926     if ((color_info[i]->compliance & XPMCompliance) != 0)
1927       (void) fprintf(file,"XPM ");
1928     (void) fprintf(file,"\n");
1929   }
1930   color_info=(const ColorInfo **) RelinquishMagickMemory((void *) color_info);
1931   (void) fflush(file);
1932   return(MagickTrue);
1933 }
1934 \f
1935 /*
1936 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1937 %                                                                             %
1938 %                                                                             %
1939 %                                                                             %
1940 +   L o a d C o l o r L i s t                                                 %
1941 %                                                                             %
1942 %                                                                             %
1943 %                                                                             %
1944 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1945 %
1946 %  LoadColorList() loads the color configuration file which provides a mapping
1947 %  between color attributes and a color name.
1948 %
1949 %  The format of the LoadColorList method is:
1950 %
1951 %      MagickBooleanType LoadColorList(const char *xml,const char *filename,
1952 %        const size_t depth,ExceptionInfo *exception)
1953 %
1954 %  A description of each parameter follows:
1955 %
1956 %    o xml:  The color list in XML format.
1957 %
1958 %    o filename:  The color list filename.
1959 %
1960 %    o depth: depth of <include /> statements.
1961 %
1962 %    o exception: return any errors or warnings in this structure.
1963 %
1964 */
1965 static MagickBooleanType LoadColorList(const char *xml,const char *filename,
1966   const size_t depth,ExceptionInfo *exception)
1967 {
1968   char
1969     keyword[MaxTextExtent],
1970     *token;
1971
1972   ColorInfo
1973     *color_info;
1974
1975   const char
1976     *q;
1977
1978   MagickBooleanType
1979     status;
1980
1981   /*
1982     Load the color map file.
1983   */
1984   (void) LogMagickEvent(ConfigureEvent,GetMagickModule(),
1985     "Loading color file \"%s\" ...",filename);
1986   if (xml == (char *) NULL)
1987     return(MagickFalse);
1988   if (color_list == (LinkedListInfo *) NULL)
1989     {
1990       color_list=NewLinkedList(0);
1991       if (color_list == (LinkedListInfo *) NULL)
1992         {
1993           ThrowFileException(exception,ResourceLimitError,
1994             "MemoryAllocationFailed",filename);
1995           return(MagickFalse);
1996         }
1997     }
1998   status=MagickTrue;
1999   color_info=(ColorInfo *) NULL;
2000   token=AcquireString(xml);
2001   for (q=(char *) xml; *q != '\0'; )
2002   {
2003     /*
2004       Interpret XML.
2005     */
2006     GetMagickToken(q,&q,token);
2007     if (*token == '\0')
2008       break;
2009     (void) CopyMagickString(keyword,token,MaxTextExtent);
2010     if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
2011       {
2012         /*
2013           Doctype element.
2014         */
2015         while ((LocaleNCompare(q,"]>",2) != 0) && (*q != '\0'))
2016           GetMagickToken(q,&q,token);
2017         continue;
2018       }
2019     if (LocaleNCompare(keyword,"<!--",4) == 0)
2020       {
2021         /*
2022           Comment element.
2023         */
2024         while ((LocaleNCompare(q,"->",2) != 0) && (*q != '\0'))
2025           GetMagickToken(q,&q,token);
2026         continue;
2027       }
2028     if (LocaleCompare(keyword,"<include") == 0)
2029       {
2030         /*
2031           Include element.
2032         */
2033         while (((*token != '/') && (*(token+1) != '>')) && (*q != '\0'))
2034         {
2035           (void) CopyMagickString(keyword,token,MaxTextExtent);
2036           GetMagickToken(q,&q,token);
2037           if (*token != '=')
2038             continue;
2039           GetMagickToken(q,&q,token);
2040           if (LocaleCompare(keyword,"file") == 0)
2041             {
2042               if (depth > 200)
2043                 (void) ThrowMagickException(exception,GetMagickModule(),
2044                   ConfigureError,"IncludeElementNestedTooDeeply","`%s'",token);
2045               else
2046                 {
2047                   char
2048                     path[MaxTextExtent],
2049                     *xml;
2050
2051                   GetPathComponent(filename,HeadPath,path);
2052                   if (*path != '\0')
2053                     (void) ConcatenateMagickString(path,DirectorySeparator,
2054                       MaxTextExtent);
2055                   if (*token == *DirectorySeparator)
2056                     (void) CopyMagickString(path,token,MaxTextExtent);
2057                   else
2058                     (void) ConcatenateMagickString(path,token,MaxTextExtent);
2059                   xml=FileToString(path,~0,exception);
2060                   if (xml != (char *) NULL)
2061                     {
2062                       status=LoadColorList(xml,path,depth+1,exception);
2063                       xml=(char *) RelinquishMagickMemory(xml);
2064                     }
2065                 }
2066             }
2067         }
2068         continue;
2069       }
2070     if (LocaleCompare(keyword,"<color") == 0)
2071       {
2072         /*
2073           Color element.
2074         */
2075         color_info=(ColorInfo *) AcquireAlignedMemory(1,sizeof(*color_info));
2076         if (color_info == (ColorInfo *) NULL)
2077           ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
2078         (void) ResetMagickMemory(color_info,0,sizeof(*color_info));
2079         color_info->path=ConstantString(filename);
2080         color_info->exempt=MagickFalse;
2081         color_info->signature=MagickSignature;
2082         continue;
2083       }
2084     if (color_info == (ColorInfo *) NULL)
2085       continue;
2086     if (LocaleCompare(keyword,"/>") == 0)
2087       {
2088         status=AppendValueToLinkedList(color_list,color_info);
2089         if (status == MagickFalse)
2090           (void) ThrowMagickException(exception,GetMagickModule(),
2091             ResourceLimitError,"MemoryAllocationFailed","`%s'",
2092             color_info->name);
2093         color_info=(ColorInfo *) NULL;
2094       }
2095     GetMagickToken(q,(const char **) NULL,token);
2096     if (*token != '=')
2097       continue;
2098     GetMagickToken(q,&q,token);
2099     GetMagickToken(q,&q,token);
2100     switch (*keyword)
2101     {
2102       case 'C':
2103       case 'c':
2104       {
2105         if (LocaleCompare((char *) keyword,"color") == 0)
2106           {
2107             (void) QueryMagickColor(token,&color_info->color,exception);
2108             break;
2109           }
2110         if (LocaleCompare((char *) keyword,"compliance") == 0)
2111           {
2112             ssize_t
2113               compliance;
2114
2115             compliance=color_info->compliance;
2116             if (GlobExpression(token,"*SVG*",MagickTrue) != MagickFalse)
2117               compliance|=SVGCompliance;
2118             if (GlobExpression(token,"*X11*",MagickTrue) != MagickFalse)
2119               compliance|=X11Compliance;
2120             if (GlobExpression(token,"*XPM*",MagickTrue) != MagickFalse)
2121               compliance|=XPMCompliance;
2122             color_info->compliance=(ComplianceType) compliance;
2123             break;
2124           }
2125         break;
2126       }
2127       case 'N':
2128       case 'n':
2129       {
2130         if (LocaleCompare((char *) keyword,"name") == 0)
2131           {
2132             color_info->name=ConstantString(token);
2133             break;
2134           }
2135         break;
2136       }
2137       case 'S':
2138       case 's':
2139       {
2140         if (LocaleCompare((char *) keyword,"stealth") == 0)
2141           {
2142             color_info->stealth=IsMagickTrue(token);
2143             break;
2144           }
2145         break;
2146       }
2147       default:
2148         break;
2149     }
2150   }
2151   token=(char *) RelinquishMagickMemory(token);
2152   return(status);
2153 }
2154 \f
2155 /*
2156 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2157 %                                                                             %
2158 %                                                                             %
2159 %                                                                             %
2160 %  L o a d C o l o r L i s t s                                                %
2161 %                                                                             %
2162 %                                                                             %
2163 %                                                                             %
2164 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2165 %
2166 %  LoadColorList() loads one or more color configuration file which provides a
2167 %  mapping between color attributes and a color name.
2168 %
2169 %  The format of the LoadColorLists method is:
2170 %
2171 %      MagickBooleanType LoadColorLists(const char *filename,
2172 %        ExceptionInfo *exception)
2173 %
2174 %  A description of each parameter follows:
2175 %
2176 %    o filename: the font file name.
2177 %
2178 %    o exception: return any errors or warnings in this structure.
2179 %
2180 */
2181 static MagickBooleanType LoadColorLists(const char *filename,
2182   ExceptionInfo *exception)
2183 {
2184   const StringInfo
2185     *option;
2186
2187   LinkedListInfo
2188     *options;
2189
2190   MagickRealType
2191     scale;
2192
2193   MagickStatusType
2194     status;
2195
2196   register ssize_t
2197     i;
2198
2199   /*
2200     Load built-in color map.
2201   */
2202   status=MagickFalse;
2203   if (color_list == (LinkedListInfo *) NULL)
2204     {
2205       color_list=NewLinkedList(0);
2206       if (color_list == (LinkedListInfo *) NULL)
2207         {
2208           ThrowFileException(exception,ResourceLimitError,
2209             "MemoryAllocationFailed",filename);
2210           return(MagickFalse);
2211         }
2212     }
2213   scale=(MagickRealType) ScaleCharToQuantum(1);
2214   for (i=0; i < (ssize_t) (sizeof(ColorMap)/sizeof(*ColorMap)); i++)
2215   {
2216     ColorInfo
2217       *color_info;
2218
2219     register const ColorMapInfo
2220       *p;
2221
2222     p=ColorMap+i;
2223     color_info=(ColorInfo *) AcquireAlignedMemory(1,sizeof(*color_info));
2224     if (color_info == (ColorInfo *) NULL)
2225       {
2226         (void) ThrowMagickException(exception,GetMagickModule(),
2227           ResourceLimitError,"MemoryAllocationFailed","`%s'",color_info->name);
2228         continue;
2229       }
2230     (void) ResetMagickMemory(color_info,0,sizeof(*color_info));
2231     color_info->path=(char *) "[built-in]";
2232     color_info->name=(char *) p->name;
2233     GetMagickPixelPacket((Image *) NULL,&color_info->color);
2234     color_info->color.red=scale*GetRedPixelComponent(p);
2235     color_info->color.green=scale*GetGreenPixelComponent(p);
2236     color_info->color.blue=scale*GetBluePixelComponent(p);
2237     color_info->color.opacity=(MagickRealType) (QuantumRange-QuantumRange*
2238       p->alpha);
2239     color_info->compliance=(ComplianceType) p->compliance;
2240     color_info->exempt=MagickTrue;
2241     color_info->signature=MagickSignature;
2242     status=AppendValueToLinkedList(color_list,color_info);
2243     if (status == MagickFalse)
2244       (void) ThrowMagickException(exception,GetMagickModule(),
2245         ResourceLimitError,"MemoryAllocationFailed","`%s'",color_info->name);
2246   }
2247   /*
2248     Load external color map.
2249   */
2250   options=GetConfigureOptions(filename,exception);
2251   option=(const StringInfo *) GetNextValueInLinkedList(options);
2252   while (option != (const StringInfo *) NULL)
2253   {
2254     status|=LoadColorList((const char *) GetStringInfoDatum(option),
2255       GetStringInfoPath(option),0,exception);
2256     option=(const StringInfo *) GetNextValueInLinkedList(options);
2257   }
2258   options=DestroyConfigureOptions(options);
2259   return(status != 0 ? MagickTrue : MagickFalse);
2260 }
2261 \f
2262 /*
2263 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2264 %                                                                             %
2265 %                                                                             %
2266 %                                                                             %
2267 %   Q u e r y C o l o r D a t a b a s e                                       %
2268 %                                                                             %
2269 %                                                                             %
2270 %                                                                             %
2271 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2272 %
2273 %  QueryColorDatabase() returns the red, green, blue, and opacity intensities
2274 %  for a given color name.
2275 %
2276 %  The format of the QueryColorDatabase method is:
2277 %
2278 %      MagickBooleanType QueryColorDatabase(const char *name,
2279 %        const ComplianceType compliance,PixelPacket *color,
2280 %        ExceptionInfo *exception)
2281 %
2282 %  A description of each parameter follows:
2283 %
2284 %    o name: the color name (e.g. white, blue, yellow).
2285 %
2286 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
2287 %
2288 %    o color: the red, green, blue, and opacity intensities values of the
2289 %      named color in this structure.
2290 %
2291 %    o exception: return any errors or warnings in this structure.
2292 %
2293 */
2294
2295 static inline double MagickMin(const double x,const double y)
2296 {
2297   if (x < y)
2298     return(x);
2299   return(y);
2300 }
2301
2302 MagickExport MagickBooleanType QueryColorCompliance(const char *name,
2303   const ComplianceType compliance,PixelPacket *color,ExceptionInfo *exception)
2304 {
2305   MagickBooleanType
2306     status;
2307
2308   MagickPixelPacket
2309     pixel;
2310
2311   status=QueryMagickColorCompliance(name,compliance,&pixel,exception);
2312   color->opacity=ClampToQuantum(pixel.opacity);
2313   if (pixel.colorspace == CMYKColorspace)
2314     {
2315       color->red=ClampToQuantum((MagickRealType) (QuantumRange-MagickMin(
2316         QuantumRange,(MagickRealType) (QuantumScale*pixel.red*(QuantumRange-
2317         pixel.index)+pixel.index))));
2318       color->green=ClampToQuantum((MagickRealType) (QuantumRange-MagickMin(
2319         QuantumRange,(MagickRealType) (QuantumScale*pixel.green*(QuantumRange-
2320         pixel.index)+pixel.index))));
2321       color->blue=ClampToQuantum((MagickRealType) (QuantumRange-MagickMin(
2322         QuantumRange,(MagickRealType) (QuantumScale*pixel.blue*(QuantumRange-
2323         pixel.index)+pixel.index))));
2324       return(status);
2325     }
2326   color->red=ClampToQuantum(pixel.red);
2327   color->green=ClampToQuantum(pixel.green);
2328   color->blue=ClampToQuantum(pixel.blue);
2329   return(status);
2330 }
2331 \f
2332 /*
2333 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2334 %                                                                             %
2335 %                                                                             %
2336 %                                                                             %
2337 %   Q u e r y C o l o r D a t a b a s e                                       %
2338 %                                                                             %
2339 %                                                                             %
2340 %                                                                             %
2341 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2342 %
2343 %  QueryColorDatabase() returns the red, green, blue, and opacity intensities
2344 %  for a given color name.
2345 %
2346 %  The format of the QueryColorDatabase method is:
2347 %
2348 %      MagickBooleanType QueryColorDatabase(const char *name,PixelPacket *color,
2349 %        ExceptionInfo *exception)
2350 %
2351 %  A description of each parameter follows:
2352 %
2353 %    o name: the color name (e.g. white, blue, yellow).
2354 %
2355 %    o color: the red, green, blue, and opacity intensities values of the
2356 %      named color in this structure.
2357 %
2358 %    o exception: return any errors or warnings in this structure.
2359 %
2360 */
2361 MagickExport MagickBooleanType QueryColorDatabase(const char *name,
2362   PixelPacket *color,ExceptionInfo *exception)
2363 {
2364   return(QueryColorCompliance(name,AllCompliance,color,exception));
2365 }
2366 \f
2367 /*
2368 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2369 %                                                                             %
2370 %                                                                             %
2371 %                                                                             %
2372 %  Q u e r y C o l o r n a m e                                                %
2373 %                                                                             %
2374 %                                                                             %
2375 %                                                                             %
2376 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2377 %
2378 %  QueryColorname() returns a named color for the given color intensity.  If
2379 %  an exact match is not found, a rgb() color is returned instead.
2380 %
2381 %  The format of the QueryColorname method is:
2382 %
2383 %      MagickBooleanType QueryColorname(const Image *image,
2384 %        const PixelPacket *color,const ComplianceType compliance,char *name,
2385 %        ExceptionInfo *exception)
2386 %
2387 %  A description of each parameter follows.
2388 %
2389 %    o image: the image.
2390 %
2391 %    o color: the color intensities.
2392 %
2393 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
2394 %
2395 %    o name: Return the color name or hex value.
2396 %
2397 %    o exception: return any errors or warnings in this structure.
2398 %
2399 */
2400 MagickExport MagickBooleanType QueryColorname(const Image *image,
2401   const PixelPacket *color,const ComplianceType compliance,char *name,
2402   ExceptionInfo *exception)
2403 {
2404   MagickPixelPacket
2405     pixel;
2406
2407   GetMagickPixelPacket(image,&pixel);
2408   SetMagickPixelPacket(image,color,(IndexPacket *) NULL,&pixel);
2409   return(QueryMagickColorname(image,&pixel,compliance,name,exception));
2410 }
2411 \f
2412 /*
2413 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2414 %                                                                             %
2415 %                                                                             %
2416 %                                                                             %
2417 %   Q u e r y M a g i c k C o l o r C o m p l i a n c e                       %
2418 %                                                                             %
2419 %                                                                             %
2420 %                                                                             %
2421 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2422 %
2423 %  QueryMagickColorCompliance() returns the red, green, blue, and opacity
2424 %  intensities for a given color name and standards compliance.
2425 %
2426 %  The format of the QueryMagickColor method is:
2427 %
2428 %      MagickBooleanType QueryMagickColor(const char *name,
2429 %        const ComplianceType compliance,MagickPixelPacket *color,
2430 %        ExceptionInfo *exception)
2431 %
2432 %  A description of each parameter follows:
2433 %
2434 %    o name: the color name (e.g. white, blue, yellow).
2435 %
2436 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
2437 %
2438 %    o color: the red, green, blue, and opacity intensities values of the
2439 %      named color in this structure.
2440 %
2441 %    o exception: return any errors or warnings in this structure.
2442 %
2443 */
2444 MagickExport MagickBooleanType QueryMagickColorCompliance(const char *name,
2445   const ComplianceType compliance,MagickPixelPacket *color,
2446   ExceptionInfo *exception)
2447 {
2448   GeometryInfo
2449     geometry_info;
2450
2451   ssize_t
2452     type;
2453
2454   MagickRealType
2455     scale;
2456
2457   MagickStatusType
2458     flags;
2459
2460   register const ColorInfo
2461     *p;
2462
2463   register ssize_t
2464     i;
2465
2466   /*
2467     Initialize color return value.
2468   */
2469   assert(name != (const char *) NULL);
2470   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",name);
2471   assert(color != (MagickPixelPacket *) NULL);
2472   GetMagickPixelPacket((Image *) NULL,color);
2473   if ((name == (char *) NULL) || (*name == '\0'))
2474     name=BackgroundColor;
2475   while (isspace((int) ((unsigned char) *name)) != 0)
2476     name++;
2477   if (*name == '#')
2478     {
2479       char
2480         c;
2481
2482       LongPixelPacket
2483         pixel;
2484
2485       QuantumAny
2486         range;
2487
2488       size_t
2489         depth,
2490         n;
2491
2492       /*
2493         Parse hex color.
2494       */
2495       (void) ResetMagickMemory(&pixel,0,sizeof(pixel));
2496       name++;
2497       for (n=0; isxdigit((int) ((unsigned char) name[n])) != MagickFalse; n++) ;
2498       if ((n % 3) == 0)
2499         {
2500           do
2501           {
2502             pixel.red=pixel.green;
2503             pixel.green=pixel.blue;
2504             pixel.blue=0;
2505             for (i=(ssize_t) (n/3-1); i >= 0; i--)
2506             {
2507               c=(*name++);
2508               pixel.blue<<=4;
2509               if ((c >= '0') && (c <= '9'))
2510                 pixel.blue|=(int) (c-'0');
2511               else
2512                 if ((c >= 'A') && (c <= 'F'))
2513                   pixel.blue|=(int) c-((int) 'A'-10);
2514                 else
2515                   if ((c >= 'a') && (c <= 'f'))
2516                     pixel.blue|=(int) c-((int) 'a'-10);
2517                   else
2518                     return(MagickFalse);
2519             }
2520           } while (isxdigit((int) ((unsigned char) *name)) != MagickFalse);
2521           depth=4*(n/3);
2522         }
2523       else
2524         {
2525           if ((n % 4) != 0)
2526             {
2527               (void) ThrowMagickException(exception,GetMagickModule(),
2528                 OptionWarning,"UnrecognizedColor","`%s'",name);
2529               return(MagickFalse);
2530             }
2531           do
2532           {
2533             pixel.red=pixel.green;
2534             pixel.green=pixel.blue;
2535             pixel.blue=pixel.opacity;
2536             pixel.opacity=0;
2537             for (i=(ssize_t) (n/4-1); i >= 0; i--)
2538             {
2539               c=(*name++);
2540               pixel.opacity<<=4;
2541               if ((c >= '0') && (c <= '9'))
2542                 pixel.opacity|=(int) (c-'0');
2543               else
2544                 if ((c >= 'A') && (c <= 'F'))
2545                   pixel.opacity|=(int) c-((int) 'A'-10);
2546                 else
2547                   if ((c >= 'a') && (c <= 'f'))
2548                     pixel.opacity|=(int) c-((int) 'a'-10);
2549                   else
2550                     return(MagickFalse);
2551             }
2552           } while (isxdigit((int) ((unsigned char) *name)) != MagickFalse);
2553           depth=4*(n/4);
2554         }
2555       color->colorspace=RGBColorspace;
2556       color->matte=MagickFalse;
2557       range=GetQuantumRange(depth);
2558       color->red=(MagickRealType) ScaleAnyToQuantum(pixel.red,range);
2559       color->green=(MagickRealType) ScaleAnyToQuantum(pixel.green,range);
2560       color->blue=(MagickRealType) ScaleAnyToQuantum(pixel.blue,range);
2561       color->opacity=(MagickRealType) OpaqueOpacity;
2562       if ((n % 3) != 0)
2563         {
2564           color->matte=MagickTrue;
2565           color->opacity=(MagickRealType) (QuantumRange-ScaleAnyToQuantum(
2566             pixel.opacity,range));
2567         }
2568       color->index=0.0;
2569       return(MagickTrue);
2570     }
2571   if (strchr(name,'(') != (char *) NULL)
2572     {
2573       char
2574         colorspace[MaxTextExtent];
2575
2576       /*
2577         Parse color of the form rgb(100,255,0).
2578       */
2579       (void) CopyMagickString(colorspace,name,MaxTextExtent);
2580       for (i=0; colorspace[i] != '\0'; i++)
2581         if (colorspace[i] == '(')
2582           break;
2583       colorspace[i--]='\0';
2584       LocaleLower(colorspace);
2585       color->matte=MagickFalse;
2586       if ((i > 0) && (colorspace[i] == 'a'))
2587         {
2588           colorspace[i]='\0';
2589           color->matte=MagickTrue;
2590         }
2591       type=ParseMagickOption(MagickColorspaceOptions,MagickFalse,colorspace);
2592       if (type < 0)
2593         {
2594           (void) ThrowMagickException(exception,GetMagickModule(),
2595             OptionWarning,"UnrecognizedColor","`%s'",name);
2596           return(MagickFalse);
2597         }
2598       color->colorspace=(ColorspaceType) type;
2599       SetGeometryInfo(&geometry_info);
2600       flags=ParseGeometry(name+i+1,&geometry_info);
2601       scale=(MagickRealType) ScaleCharToQuantum(1);
2602       if ((flags & PercentValue) != 0)
2603         scale=(MagickRealType) (QuantumRange/100.0);
2604       if ((flags & RhoValue) != 0)
2605         color->red=(MagickRealType) ClampToQuantum(scale*geometry_info.rho);
2606       if ((flags & SigmaValue) != 0)
2607         color->green=(MagickRealType) ClampToQuantum(scale*geometry_info.sigma);
2608       if ((flags & XiValue) != 0)
2609         color->blue=(MagickRealType) ClampToQuantum(scale*geometry_info.xi);
2610       color->opacity=(MagickRealType) OpaqueOpacity;
2611       if ((flags & PsiValue) != 0)
2612         {
2613           if (color->colorspace == CMYKColorspace)
2614             color->index=(MagickRealType) ClampToQuantum(scale*
2615               geometry_info.psi);
2616           else
2617             if (color->matte != MagickFalse)
2618               color->opacity=(MagickRealType) ClampToQuantum((MagickRealType)
2619                 (QuantumRange-QuantumRange*geometry_info.psi));
2620         }
2621       if (((flags & ChiValue) != 0) && (color->matte != MagickFalse))
2622         color->opacity=(MagickRealType) ClampToQuantum((MagickRealType)
2623           (QuantumRange-QuantumRange*geometry_info.chi));
2624       if (LocaleCompare(colorspace,"gray") == 0)
2625         {
2626           color->green=color->red;
2627           color->blue=color->red;
2628           if (((flags & SigmaValue) != 0) && (color->matte != MagickFalse))
2629             color->opacity=(MagickRealType) ClampToQuantum((MagickRealType)
2630               (QuantumRange-QuantumRange*geometry_info.sigma));
2631         }
2632       if ((LocaleCompare(colorspace,"HSB") == 0) ||
2633           (LocaleCompare(colorspace,"HSL") == 0) ||
2634           (LocaleCompare(colorspace,"HWB") == 0))
2635         {
2636           PixelPacket
2637             pixel;
2638
2639           scale=1.0/360.0;
2640           if ((flags & PercentValue) != 0)
2641             scale=1.0/100.0;
2642           geometry_info.rho*=360.0*scale;
2643           scale=1.0/255.0;
2644           if ((flags & PercentValue) != 0)
2645             scale=1.0/100.0;
2646           geometry_info.sigma*=scale;
2647           geometry_info.xi*=scale;
2648           if (LocaleCompare(colorspace,"HSB") == 0)
2649             ConvertHSBToRGB(fmod(fmod(geometry_info.rho,360.0)+360.0,360.0)/
2650               360.0,geometry_info.sigma,geometry_info.xi,&pixel.red,
2651               &pixel.green,&pixel.blue);
2652           else
2653             if (LocaleCompare(colorspace,"HSL") == 0)
2654               ConvertHSLToRGB(fmod(fmod(geometry_info.rho,360.0)+360.0,360.0)/
2655                 360.0,geometry_info.sigma,geometry_info.xi,&pixel.red,
2656                 &pixel.green,&pixel.blue);
2657             else
2658               ConvertHWBToRGB(fmod(fmod(geometry_info.rho,360.0)+360.0,360.0)/
2659                 360.0,geometry_info.sigma,geometry_info.xi,&pixel.red,
2660                 &pixel.green,&pixel.blue);
2661           color->colorspace=RGBColorspace;
2662           color->red=(MagickRealType) pixel.red;
2663           color->green=(MagickRealType) pixel.green;
2664           color->blue=(MagickRealType) pixel.blue;
2665         }
2666       return(MagickTrue);
2667     }
2668   /*
2669     Parse named color.
2670   */
2671   p=GetColorCompliance(name,compliance,exception);
2672   if (p == (const ColorInfo *) NULL)
2673     return(MagickFalse);
2674   color->colorspace=RGBColorspace;
2675   color->matte=p->color.opacity != OpaqueOpacity ? MagickTrue : MagickFalse;
2676   color->red=(MagickRealType) p->color.red;
2677   color->green=(MagickRealType) p->color.green;
2678   color->blue=(MagickRealType) p->color.blue;
2679   color->opacity=(MagickRealType) p->color.opacity;
2680   color->index=0.0;
2681   return(MagickTrue);
2682 }
2683 \f
2684 /*
2685 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2686 %                                                                             %
2687 %                                                                             %
2688 %                                                                             %
2689 %   Q u e r y M a g i c k C o l o r                                           %
2690 %                                                                             %
2691 %                                                                             %
2692 %                                                                             %
2693 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2694 %
2695 %  QueryMagickColor() returns the red, green, blue, and opacity intensities
2696 %  for a given color name.
2697 %
2698 %  The format of the QueryMagickColor method is:
2699 %
2700 %      MagickBooleanType QueryMagickColor(const char *name,
2701 %        MagickPixelPacket *color,ExceptionInfo *exception)
2702 %
2703 %  A description of each parameter follows:
2704 %
2705 %    o name: the color name (e.g. white, blue, yellow).
2706 %
2707 %    o color: the red, green, blue, and opacity intensities values of the
2708 %      named color in this structure.
2709 %
2710 %    o exception: return any errors or warnings in this structure.
2711 %
2712 */
2713 MagickExport MagickBooleanType QueryMagickColor(const char *name,
2714   MagickPixelPacket *color,ExceptionInfo *exception)
2715 {
2716   return(QueryMagickColorCompliance(name,AllCompliance,color,exception));
2717 }
2718 \f
2719 /*
2720 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2721 %                                                                             %
2722 %                                                                             %
2723 %                                                                             %
2724 %  Q u e r y M a g i c k C o l o r n a m e                                    %
2725 %                                                                             %
2726 %                                                                             %
2727 %                                                                             %
2728 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2729 %
2730 %  QueryMagickColorname() returns a named color for the given color intensity.
2731 %  If an exact match is not found, a hex value is returned instead.  For
2732 %  example an intensity of rgb:(0,0,0) returns black whereas rgb:(223,223,223)
2733 %  returns #dfdfdf.
2734 %
2735 %  The format of the QueryMagickColorname method is:
2736 %
2737 %      MagickBooleanType QueryMagickColorname(const Image *image,
2738 %        const PixelPacket *color,const ComplianceType compliance,char *name,
2739 %        ExceptionInfo *exception)
2740 %
2741 %  A description of each parameter follows.
2742 %
2743 %    o image: the image.
2744 %
2745 %    o color: the color intensities.
2746 %
2747 %    o Compliance: Adhere to this color standard: SVG, X11, or XPM.
2748 %
2749 %    o name: Return the color name or hex value.
2750 %
2751 %    o exception: return any errors or warnings in this structure.
2752 %
2753 */
2754 MagickExport MagickBooleanType QueryMagickColorname(const Image *image,
2755   const MagickPixelPacket *color,const ComplianceType compliance,
2756   char *name,ExceptionInfo *exception)
2757 {
2758   MagickPixelPacket
2759     pixel;
2760
2761   MagickRealType
2762     opacity;
2763
2764   register const ColorInfo
2765     *p;
2766
2767   *name='\0';
2768   pixel=(*color);
2769   if (compliance == XPMCompliance)
2770     {
2771       pixel.matte=MagickFalse;
2772       pixel.depth=(size_t) MagickMin(1.0*image->depth,16.0);
2773     }
2774   GetColorTuple(&pixel,compliance != SVGCompliance ? MagickTrue : MagickFalse,
2775     name);
2776   (void) GetColorInfo("*",exception);
2777   ResetLinkedListIterator(color_list);
2778   opacity=image->matte != MagickFalse ? color->opacity : OpaqueOpacity;
2779   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
2780   while (p != (const ColorInfo *) NULL)
2781   {
2782     if (((p->compliance & compliance) != 0) && ((p->color.red == color->red)) &&
2783          (p->color.green == color->green) && (p->color.blue == color->blue) &&
2784          (p->color.opacity == opacity))
2785       {
2786         (void) CopyMagickString(name,p->name,MaxTextExtent);
2787         break;
2788       }
2789     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
2790   }
2791   return(MagickTrue);
2792 }