]> 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-2009 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 long
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 },
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   RelinquishSemaphoreInfo(color_semaphore);
821   return(MagickTrue);
822 }
823 \f
824 /*
825 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
826 %                                                                             %
827 %                                                                             %
828 %                                                                             %
829 +   C o l o r C o m p o n e n t T e r m i n u s                               %
830 %                                                                             %
831 %                                                                             %
832 %                                                                             %
833 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
834 %
835 %  ColorComponentTerminus() destroys the color component.
836 %
837 %  The format of the ColorComponentTerminus method is:
838 %
839 %      ColorComponentTerminus(void)
840 %
841 */
842
843 static void *DestroyColorElement(void *color_info)
844 {
845   register ColorInfo
846     *p;
847
848   p=(ColorInfo *) color_info;
849   if (p->exempt  == MagickFalse)
850     {
851       if (p->path != (char *) NULL)
852         p->path=DestroyString(p->path);
853       if (p->name != (char *) NULL)
854         p->name=DestroyString(p->name);
855     }
856   p=(ColorInfo *) RelinquishMagickMemory(p);
857   return((void *) NULL);
858 }
859
860 MagickExport void ColorComponentTerminus(void)
861 {
862   AcquireSemaphoreInfo(&color_semaphore);
863   if (color_list != (LinkedListInfo *) NULL)
864     color_list=DestroyLinkedList(color_list,DestroyColorElement);
865   instantiate_color=MagickFalse;
866   RelinquishSemaphoreInfo(color_semaphore);
867   DestroySemaphoreInfo(&color_semaphore);
868 }
869 \f
870 /*
871 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
872 %                                                                             %
873 %                                                                             %
874 %                                                                             %
875 +   G e t C o l o r I n f o                                                   %
876 %                                                                             %
877 %                                                                             %
878 %                                                                             %
879 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
880 %
881 %  GetColorInfo() searches the color list for the specified name and if found
882 %  returns attributes for that color.
883 %
884 %  The format of the GetColorInfo method is:
885 %
886 %      const PixelPacket *GetColorInfo(const char *name,
887 %        ExceptionInfo *exception)
888 %
889 %  A description of each parameter follows:
890 %
891 %    o color_info: search the color list for the specified name and if found
892 %      return attributes for that color.
893 %
894 %    o name: the color name.
895 %
896 %    o exception: return any errors or warnings in this structure.
897 %
898 */
899 MagickExport const ColorInfo *GetColorInfo(const char *name,
900   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   AcquireSemaphoreInfo(&color_semaphore);
936   ResetLinkedListIterator(color_list);
937   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
938   while (p != (const ColorInfo *) NULL)
939   {
940     if (LocaleCompare(colorname,p->name) == 0)
941       break;
942     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
943   }
944   if (p == (ColorInfo *) NULL)
945     (void) ThrowMagickException(exception,GetMagickModule(),OptionWarning,
946       "UnrecognizedColor","`%s'",name);
947   else
948     (void) InsertValueInLinkedList(color_list,0,
949       RemoveElementByValueFromLinkedList(color_list,p));
950   RelinquishSemaphoreInfo(color_semaphore);
951   return(p);
952 }
953 \f
954 /*
955 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
956 %                                                                             %
957 %                                                                             %
958 %                                                                             %
959 +   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                         %
960 %                                                                             %
961 %                                                                             %
962 %                                                                             %
963 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
964 %
965 %  ConcatenateColorComponent() returns the pixel as a canonical string.
966 %
967 %  The format of the ConcatenateColorComponent() method is:
968 %
969 %      void ConcatenateColorComponent(const MagickPixelPacket *pixel,
970 %        const ChannelType channel,const ComplianceType compliance,char *tuple)
971 %
972 %  A description of each parameter follows.
973 %
974 %    o pixel:  The pixel.
975 %
976 %    channel:  The channel.
977 %
978 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
979 %
980 %    tuple:  The color tuple.
981 %
982 */
983 MagickExport void ConcatenateColorComponent(const MagickPixelPacket *pixel,
984   const ChannelType channel,const ComplianceType compliance,char *tuple)
985 {
986   char
987     component[MaxTextExtent];
988
989   MagickRealType
990     color;
991
992   color=0.0;
993   switch (channel)
994   {
995     case RedChannel:
996     {
997       color=pixel->red;
998       break;
999     }
1000     case GreenChannel:
1001     {
1002       color=pixel->green;
1003       break;
1004     }
1005     case BlueChannel:
1006     {
1007       color=pixel->blue;
1008       break;
1009     }
1010     case AlphaChannel:
1011     {
1012       color=QuantumRange-pixel->opacity;
1013       break;
1014     }
1015     case IndexChannel:
1016     {
1017       color=pixel->index;
1018       break;
1019     }
1020     default:
1021       break;
1022   }
1023   if (compliance != SVGCompliance)
1024     {
1025       if (pixel->depth > 16)
1026         {
1027           (void) FormatMagickString(component,MaxTextExtent,"%10lu",
1028             (unsigned long) ScaleQuantumToLong(RoundToQuantum(color)));
1029           (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1030           return;
1031         }
1032       if (pixel->depth > 8)
1033         {
1034           (void) FormatMagickString(component,MaxTextExtent,"%5d",
1035             ScaleQuantumToShort(RoundToQuantum(color)));
1036           (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1037           return;
1038         }
1039       (void) FormatMagickString(component,MaxTextExtent,"%3d",
1040         ScaleQuantumToChar(RoundToQuantum(color)));
1041       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1042       return;
1043     }
1044   if (channel == OpacityChannel)
1045     {
1046       (void) FormatMagickString(component,MaxTextExtent,"%g",
1047         (double) (QuantumScale*color));
1048       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1049       return;
1050     }
1051   if (pixel->depth > 8)
1052     {
1053       (void) FormatMagickString(component,MaxTextExtent,"%g%%",
1054         (double) (100.0*QuantumScale*color));
1055       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1056       return;
1057     }
1058   (void) FormatMagickString(component,MaxTextExtent,"%d",
1059     ScaleQuantumToChar(RoundToQuantum(color)));
1060   (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1061 }
1062 \f
1063 /*
1064 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1065 %                                                                             %
1066 %                                                                             %
1067 %                                                                             %
1068 %   G e t C o l o r I n f o L i s t                                           %
1069 %                                                                             %
1070 %                                                                             %
1071 %                                                                             %
1072 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1073 %
1074 %  GetColorInfoList() returns any colors that match the specified pattern.
1075 %
1076 %  The format of the GetColorInfoList function is:
1077 %
1078 %      const ColorInfo **GetColorInfoList(const char *pattern,
1079 %        unsigned long *number_colors,ExceptionInfo *exception)
1080 %
1081 %  A description of each parameter follows:
1082 %
1083 %    o pattern: Specifies a pointer to a text string containing a pattern.
1084 %
1085 %    o number_colors:  This integer returns the number of colors in the list.
1086 %
1087 %    o exception: return any errors or warnings in this structure.
1088 %
1089 */
1090
1091 #if defined(__cplusplus) || defined(c_plusplus)
1092 extern "C" {
1093 #endif
1094
1095 static int ColorInfoCompare(const void *x,const void *y)
1096 {
1097   const ColorInfo
1098     **p,
1099     **q;
1100
1101   p=(const ColorInfo **) x,
1102   q=(const ColorInfo **) y;
1103   if (LocaleCompare((*p)->path,(*q)->path) == 0)
1104     return(LocaleCompare((*p)->name,(*q)->name));
1105   return(LocaleCompare((*p)->path,(*q)->path));
1106 }
1107
1108 #if defined(__cplusplus) || defined(c_plusplus)
1109 }
1110 #endif
1111
1112 MagickExport const ColorInfo **GetColorInfoList(const char *pattern,
1113   unsigned long *number_colors,ExceptionInfo *exception)
1114 {
1115   const ColorInfo
1116     **colors;
1117
1118   register const ColorInfo
1119     *p;
1120
1121   register long
1122     i;
1123
1124   /*
1125     Allocate color list.
1126   */
1127   assert(pattern != (char *) NULL);
1128   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
1129   assert(number_colors != (unsigned long *) NULL);
1130   *number_colors=0;
1131   p=GetColorInfo("*",exception);
1132   if (p == (const ColorInfo *) NULL)
1133     return((const ColorInfo **) NULL);
1134   colors=(const ColorInfo **) AcquireQuantumMemory((size_t)
1135     GetNumberOfElementsInLinkedList(color_list)+1UL,sizeof(*colors));
1136   if (colors == (const ColorInfo **) NULL)
1137     return((const ColorInfo **) NULL);
1138   /*
1139     Generate color list.
1140   */
1141   AcquireSemaphoreInfo(&color_semaphore);
1142   ResetLinkedListIterator(color_list);
1143   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1144   for (i=0; p != (const ColorInfo *) NULL; )
1145   {
1146     if ((p->stealth == MagickFalse) &&
1147         (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
1148       colors[i++]=p;
1149     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1150   }
1151   RelinquishSemaphoreInfo(color_semaphore);
1152   qsort((void *) colors,(size_t) i,sizeof(*colors),ColorInfoCompare);
1153   colors[i]=(ColorInfo *) NULL;
1154   *number_colors=(unsigned long) i;
1155   return(colors);
1156 }
1157 \f
1158 /*
1159 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1160 %                                                                             %
1161 %                                                                             %
1162 %                                                                             %
1163 %   G e t C o l o r L i s t                                                   %
1164 %                                                                             %
1165 %                                                                             %
1166 %                                                                             %
1167 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1168 %
1169 %  GetColorList() returns any colors that match the specified pattern.
1170 %
1171 %  The format of the GetColorList function is:
1172 %
1173 %      char **GetColorList(const char *pattern,unsigned long *number_colors,
1174 %        ExceptionInfo *exception)
1175 %
1176 %  A description of each parameter follows:
1177 %
1178 %    o pattern: Specifies a pointer to a text string containing a pattern.
1179 %
1180 %    o number_colors:  This integer returns the number of colors in the list.
1181 %
1182 %    o exception: return any errors or warnings in this structure.
1183 %
1184 */
1185
1186 #if defined(__cplusplus) || defined(c_plusplus)
1187 extern "C" {
1188 #endif
1189
1190 static int ColorCompare(const void *x,const void *y)
1191 {
1192   register const char
1193     **p,
1194     **q;
1195
1196   p=(const char **) x;
1197   q=(const char **) y;
1198   return(LocaleCompare(*p,*q));
1199 }
1200
1201 #if defined(__cplusplus) || defined(c_plusplus)
1202 }
1203 #endif
1204
1205 MagickExport char **GetColorList(const char *pattern,
1206   unsigned long *number_colors,ExceptionInfo *exception)
1207 {
1208   char
1209     **colors;
1210
1211   register const ColorInfo
1212     *p;
1213
1214   register long
1215     i;
1216
1217   /*
1218     Allocate color list.
1219   */
1220   assert(pattern != (char *) NULL);
1221   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
1222   assert(number_colors != (unsigned long *) NULL);
1223   *number_colors=0;
1224   p=GetColorInfo("*",exception);
1225   if (p == (const ColorInfo *) NULL)
1226     return((char **) NULL);
1227   colors=(char **) AcquireQuantumMemory((size_t)
1228     GetNumberOfElementsInLinkedList(color_list)+1UL,sizeof(*colors));
1229   if (colors == (char **) NULL)
1230     return((char **) NULL);
1231   /*
1232     Generate color list.
1233   */
1234   AcquireSemaphoreInfo(&color_semaphore);
1235   ResetLinkedListIterator(color_list);
1236   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1237   for (i=0; p != (const ColorInfo *) NULL; )
1238   {
1239     if ((p->stealth == MagickFalse) &&
1240         (GlobExpression(p->name,pattern,MagickFalse) != MagickFalse))
1241       colors[i++]=ConstantString(p->name);
1242     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
1243   }
1244   RelinquishSemaphoreInfo(color_semaphore);
1245   qsort((void *) colors,(size_t) i,sizeof(*colors),ColorCompare);
1246   colors[i]=(char *) NULL;
1247   *number_colors=(unsigned long) i;
1248   return(colors);
1249 }
1250 \f
1251 /*
1252 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1253 %                                                                             %
1254 %                                                                             %
1255 %                                                                             %
1256 +   G e t C o l o r T u p l e                                                 %
1257 %                                                                             %
1258 %                                                                             %
1259 %                                                                             %
1260 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1261 %
1262 %  GetColorTuple() returns a color as a color tuple string (e.g. rgba(255,0,0))
1263 %  or hex string (e.g. #FF0000).
1264 %
1265 %  The format of the GetColorTuple method is:
1266 %
1267 %      GetColorTuple(const MagickPixelPacket *pixel,const MagickBooleanType hex,
1268 %        char *tuple)
1269 %
1270 %  A description of each parameter follows.
1271 %
1272 %    o pixel: the pixel.
1273 %
1274 %    o hex: A value other than zero returns the tuple in a hexidecimal format.
1275 %
1276 %    o tuple: Return the color tuple as this string.
1277 %
1278 */
1279
1280 static void ConcatentateHexColorComponent(const MagickPixelPacket *pixel,
1281   const ChannelType channel,char *tuple)
1282 {
1283   char
1284     component[MaxTextExtent];
1285
1286   MagickRealType
1287     color;
1288
1289   color=0.0;
1290   switch (channel)
1291   {
1292     case RedChannel:
1293     {
1294       color=pixel->red;
1295       break;
1296     }
1297     case GreenChannel:
1298     {
1299       color=pixel->green;
1300       break;
1301     }
1302     case BlueChannel:
1303     {
1304       color=pixel->blue;
1305       break;
1306     }
1307     case OpacityChannel:
1308     {
1309       color=(MagickRealType) QuantumRange-pixel->opacity;
1310       break;
1311     }
1312     case IndexChannel:
1313     {
1314       color=pixel->index;
1315       break;
1316     }
1317     default:
1318       break;
1319   }
1320   if (pixel->depth > 32)
1321     {
1322       (void) FormatMagickString(component,MaxTextExtent,"%08lX",
1323         ScaleQuantumToLong(RoundToQuantum(color)));
1324       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1325       return;
1326     }
1327   if (pixel->depth > 16)
1328     {
1329       (void) FormatMagickString(component,MaxTextExtent,"%08X",
1330         (unsigned int) ScaleQuantumToLong(RoundToQuantum(color)));
1331       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1332       return;
1333     }
1334   if (pixel->depth > 8)
1335     {
1336       (void) FormatMagickString(component,MaxTextExtent,"%04X",
1337         ScaleQuantumToShort(RoundToQuantum(color)));
1338       (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1339       return;
1340     }
1341   (void) FormatMagickString(component,MaxTextExtent,"%02X",
1342     ScaleQuantumToChar(RoundToQuantum(color)));
1343   (void) ConcatenateMagickString(tuple,component,MaxTextExtent);
1344   return;
1345 }
1346
1347 MagickExport void GetColorTuple(const MagickPixelPacket *pixel,
1348   const MagickBooleanType hex,char *tuple)
1349 {
1350   MagickPixelPacket
1351     color;
1352
1353   assert(pixel != (const MagickPixelPacket *) NULL);
1354   assert(tuple != (char *) NULL);
1355   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",tuple);
1356   *tuple='\0';
1357   if (hex != MagickFalse)
1358     {
1359       /*
1360         Convert pixel to hex color.
1361       */
1362       (void) ConcatenateMagickString(tuple,"#",MaxTextExtent);
1363       ConcatentateHexColorComponent(pixel,RedChannel,tuple);
1364       ConcatentateHexColorComponent(pixel,GreenChannel,tuple);
1365       ConcatentateHexColorComponent(pixel,BlueChannel,tuple);
1366       if (pixel->colorspace == CMYKColorspace)
1367         ConcatentateHexColorComponent(pixel,IndexChannel,tuple);
1368       if ((pixel->matte != MagickFalse) && (pixel->opacity != OpaqueOpacity))
1369         ConcatentateHexColorComponent(pixel,OpacityChannel,tuple);
1370       return;
1371     }
1372   /*
1373     Convert pixel to rgb() or cmyk() color.
1374   */
1375   color=(*pixel);
1376   if (color.depth > 8)
1377     {
1378 #define SVGCompliant(component) ((MagickRealType) \
1379    ScaleCharToQuantum(ScaleQuantumToChar(RoundToQuantum(component))));
1380
1381       MagickStatusType
1382         status;
1383
1384       /*
1385         SVG requires color depths > 8 expressed as percentages.
1386       */
1387       status=color.red == SVGCompliant(color.red);
1388       status&=color.green == SVGCompliant(color.green);
1389       status&=color.blue == SVGCompliant(color.blue);
1390       if (color.colorspace != CMYKColorspace)
1391         status&=color.index == SVGCompliant(color.index);
1392       if (color.matte != MagickFalse)
1393         status&=color.opacity == SVGCompliant(color.opacity);
1394       if (status != MagickFalse)
1395         color.depth=8;
1396     }
1397   (void) ConcatenateMagickString(tuple,MagickOptionToMnemonic(
1398     MagickColorspaceOptions,(long) color.colorspace),MaxTextExtent);
1399   if (color.matte != MagickFalse)
1400     (void) ConcatenateMagickString(tuple,"a",MaxTextExtent);
1401   (void) ConcatenateMagickString(tuple,"(",MaxTextExtent);
1402   ConcatenateColorComponent(&color,RedChannel,SVGCompliance,tuple);
1403   (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1404   ConcatenateColorComponent(&color,GreenChannel,SVGCompliance,tuple);
1405   (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1406   ConcatenateColorComponent(&color,BlueChannel,SVGCompliance,tuple);
1407   if (color.colorspace == CMYKColorspace)
1408     {
1409       (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1410       ConcatenateColorComponent(&color,IndexChannel,SVGCompliance,tuple);
1411     }
1412   if (color.matte != MagickFalse)
1413     {
1414       (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1415       ConcatenateColorComponent(&color,AlphaChannel,SVGCompliance,tuple);
1416     }
1417   (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
1418   LocaleLower(tuple);
1419   return;
1420 }
1421 \f
1422 /*
1423 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1424 %                                                                             %
1425 %                                                                             %
1426 %                                                                             %
1427 +   I n i t i a l i z e C o l o r L i s t                                     %
1428 %                                                                             %
1429 %                                                                             %
1430 %                                                                             %
1431 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1432 %
1433 %  InitializeColorList() initializes the color list.
1434 %
1435 %  The format of the InitializeColorList method is:
1436 %
1437 %      MagickBooleanType InitializeColorList(ExceptionInfo *exception)
1438 %
1439 %  A description of each parameter follows.
1440 %
1441 %    o exception: return any errors or warnings in this structure.
1442 %
1443 */
1444 static MagickBooleanType InitializeColorList(ExceptionInfo *exception)
1445 {
1446   if ((color_list == (LinkedListInfo *) NULL) &&
1447       (instantiate_color == MagickFalse))
1448     {
1449       AcquireSemaphoreInfo(&color_semaphore);
1450       if ((color_list == (LinkedListInfo *) NULL) &&
1451           (instantiate_color == MagickFalse))
1452         {
1453           (void) LoadColorLists(ColorFilename,exception);
1454           instantiate_color=MagickTrue;
1455         }
1456       RelinquishSemaphoreInfo(color_semaphore);
1457     }
1458   return(color_list != (LinkedListInfo *) NULL ? MagickTrue : MagickFalse);
1459 }
1460 \f
1461 /*
1462 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1463 %                                                                             %
1464 %                                                                             %
1465 %                                                                             %
1466 +   I s C o l o r S i m i l a r                                               %
1467 %                                                                             %
1468 %                                                                             %
1469 %                                                                             %
1470 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1471 %
1472 %  IsColorSimilar() returns MagickTrue if the distance between two colors is
1473 %  less than the specified distance in a linear three dimensional color space.
1474 %  This method is used by ColorFloodFill() and other algorithms which
1475 %  compare two colors.
1476 %
1477 %  The format of the IsColorSimilar method is:
1478 %
1479 %      void IsColorSimilar(const Image *image,const PixelPacket *p,
1480 %        const PixelPacket *q)
1481 %
1482 %  A description of each parameter follows:
1483 %
1484 %    o image: the image.
1485 %
1486 %    o p: Pixel p.
1487 %
1488 %    o q: Pixel q.
1489 %
1490 */
1491
1492 static inline double MagickMax(const double x,const double y)
1493 {
1494   if (x > y)
1495     return(x);
1496   return(y);
1497 }
1498
1499 MagickExport MagickBooleanType IsColorSimilar(const Image *image,
1500   const PixelPacket *p,const PixelPacket *q)
1501 {
1502   MagickRealType
1503     fuzz,
1504     pixel;
1505
1506   register MagickRealType
1507     alpha,
1508     beta,
1509     distance;
1510
1511   if ((image->fuzz == 0.0) && (image->matte == MagickFalse))
1512     return(IsColorEqual(p,q));
1513   fuzz=3.0*MagickMax(image->fuzz,MagickSQ1_2)*MagickMax(image->fuzz,
1514     MagickSQ1_2);
1515   alpha=1.0;
1516   beta=1.0;
1517   if (image->matte != MagickFalse)
1518     {
1519       alpha=(MagickRealType) (QuantumScale*(QuantumRange-p->opacity));
1520       beta=(MagickRealType) (QuantumScale*(QuantumRange-q->opacity));
1521     }
1522   pixel=alpha*p->red-beta*q->red;
1523   distance=pixel*pixel;
1524   if (distance > fuzz)
1525     return(MagickFalse);
1526   pixel=alpha*p->green-beta*q->green;
1527   distance+=pixel*pixel;
1528   if (distance > fuzz)
1529     return(MagickFalse);
1530   pixel=alpha*p->blue-beta*q->blue;
1531   distance+=pixel*pixel;
1532   if (distance > fuzz)
1533     return(MagickFalse);
1534   return(MagickTrue);
1535 }
1536 \f
1537 /*
1538 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1539 %                                                                             %
1540 %                                                                             %
1541 %                                                                             %
1542 +   I s I m a g e S i m i l a r                                               %
1543 %                                                                             %
1544 %                                                                             %
1545 %                                                                             %
1546 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1547 %
1548 %  IsImageSimilar() returns true if the target is similar to a region of the
1549 %  image.
1550 %
1551 %  The format of the IsImageSimilar method is:
1552 %
1553 %      MagickBooleanType IsImageSimilar(const Image *image,
1554 %        const Image *target_image,long *x_offset,long *y_offset,
1555 %        ExceptionInfo *exception)
1556 %
1557 %  A description of each parameter follows:
1558 %
1559 %    o image: the image.
1560 %
1561 %    o target_image: the target image.
1562 %
1563 %    o x_offset: On input the starting x position to search for a match;
1564 %      on output the x position of the first match found.
1565 %
1566 %    o y_offset: On input the starting y position to search for a match;
1567 %      on output the y position of the first match found.
1568 %
1569 %    o exception: return any errors or warnings in this structure.
1570 %
1571 */
1572 MagickExport MagickBooleanType IsImageSimilar(const Image *image,
1573   const Image *target_image,long *x_offset,long *y_offset,
1574   ExceptionInfo *exception)
1575 {
1576 #define SearchImageText  "  Searching image...  "
1577
1578   long
1579     j,
1580     y;
1581
1582   MagickBooleanType
1583     status;
1584
1585   MagickPixelPacket
1586     target,
1587     pixel;
1588
1589   register const PixelPacket
1590     *p,
1591     *q;
1592
1593   register const IndexPacket
1594     *indexes,
1595     *target_indexes;
1596
1597   register long
1598     i,
1599     x;
1600
1601   CacheView
1602     *image_view,
1603     *target_view;
1604
1605   assert(image != (Image *) NULL);
1606   assert(image->signature == MagickSignature);
1607   if (image->debug != MagickFalse)
1608     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1609   assert(target_image != (Image *) NULL);
1610   assert(target_image->signature == MagickSignature);
1611   assert(x_offset != (long *) NULL);
1612   assert(y_offset != (long *) NULL);
1613   assert(exception != (ExceptionInfo *) NULL);
1614   x=0;
1615   GetMagickPixelPacket(image,&pixel);
1616   GetMagickPixelPacket(image,&target);
1617   image_view=AcquireCacheView(image);
1618   target_view=AcquireCacheView(target_image);
1619   for (y=(*y_offset); y < (long) image->rows; y++)
1620   {
1621     for (x=y == 0 ? *x_offset : 0; x < (long) image->columns; x++)
1622     {
1623       for (j=0; j < (long) target_image->rows; j++)
1624       {
1625         for (i=0; i < (long) target_image->columns; i++)
1626         {
1627           p=GetCacheViewVirtualPixels(image_view,x+i,y+j,1,1,exception);
1628           indexes=GetCacheViewVirtualIndexQueue(image_view);
1629           SetMagickPixelPacket(image,p,indexes,&pixel);
1630           q=GetCacheViewVirtualPixels(target_view,i,j,1,1,exception);
1631           target_indexes=GetCacheViewVirtualIndexQueue(target_view);
1632           SetMagickPixelPacket(image,q,target_indexes,&target);
1633           if (IsMagickColorSimilar(&pixel,&target) == MagickFalse)
1634             break;
1635         }
1636         if (i < (long) target_image->columns)
1637           break;
1638       }
1639       if (j == (long) target_image->rows)
1640         break;
1641     }
1642     if (x < (long) image->columns)
1643       break;
1644     if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
1645         (QuantumTick(y,image->rows) != MagickFalse))
1646       {
1647         status=image->progress_monitor(SearchImageText,y,image->rows,
1648           image->client_data);
1649         if (status == MagickFalse)
1650           break;
1651       }
1652   }
1653   target_view=DestroyCacheView(target_view);
1654   image_view=DestroyCacheView(image_view);
1655   *x_offset=x;
1656   *y_offset=y;
1657   return(y < (long) image->rows ? MagickTrue : MagickFalse);
1658 }
1659 \f
1660 /*
1661 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1662 %                                                                             %
1663 %                                                                             %
1664 %                                                                             %
1665 +   I s M a g i c k C o l o r S i m i l a r                                   %
1666 %                                                                             %
1667 %                                                                             %
1668 %                                                                             %
1669 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1670 %
1671 %  IsMagickColorSimilar() returns true if the distance between two colors is
1672 %  less than the specified distance in a linear three dimensional color space.
1673 %  This method is used by ColorFloodFill() and other algorithms which
1674 %  compare two colors.
1675 %
1676 %  The format of the IsMagickColorSimilar method is:
1677 %
1678 %      MagickBooleanType IsMagickColorSimilar(const MagickPixelPacket *p,
1679 %        const MagickPixelPacket *q)
1680 %
1681 %  A description of each parameter follows:
1682 %
1683 %    o p: Pixel p.
1684 %
1685 %    o q: Pixel q.
1686 %
1687 */
1688 MagickExport MagickBooleanType IsMagickColorSimilar(const MagickPixelPacket *p,
1689   const MagickPixelPacket *q)
1690 {
1691   MagickRealType
1692     fuzz,
1693     pixel;
1694
1695   register MagickRealType
1696     alpha,
1697     beta,
1698     distance;
1699
1700   if ((p->fuzz == 0.0) && (q->fuzz == 0.0))
1701     return(IsMagickColorEqual(p,q));
1702   if (p->fuzz == 0.0)
1703     fuzz=MagickMax(q->fuzz,MagickSQ1_2)*MagickMax(q->fuzz,MagickSQ1_2);
1704   else
1705     if (q->fuzz == 0.0)
1706       fuzz=3.0*MagickMax(p->fuzz,MagickSQ1_2)*MagickMax(p->fuzz,MagickSQ1_2);
1707     else
1708       fuzz=3.0*MagickMax(p->fuzz,MagickSQ1_2)*MagickMax(q->fuzz,MagickSQ1_2);
1709   alpha=1.0;
1710   if (p->matte != MagickFalse)
1711     alpha=(MagickRealType) (QuantumScale*(QuantumRange-p->opacity));
1712   beta=1.0;
1713   if (q->matte != MagickFalse)
1714     beta=(MagickRealType) (QuantumScale*(QuantumRange-q->opacity));
1715   if (p->colorspace == CMYKColorspace)
1716     {
1717       alpha*=(MagickRealType) (QuantumScale*(QuantumRange-p->index));
1718       beta*=(MagickRealType) (QuantumScale*(QuantumRange-q->index));
1719     }
1720   pixel=alpha*p->red-beta*q->red;
1721   if ((p->colorspace == HSLColorspace) || (p->colorspace == HSBColorspace) ||
1722       (p->colorspace == HWBColorspace))
1723     {
1724       if (fabs(p->red-q->red) > (QuantumRange/2))
1725         {
1726           if (p->red > (QuantumRange/2))
1727             pixel=alpha*(p->red-QuantumRange)-beta*q->red;
1728           else
1729             pixel=alpha*p->red-beta*(q->red-QuantumRange);
1730         }
1731         pixel*=2;
1732      }
1733   distance=pixel*pixel;
1734   if (distance > fuzz)
1735     return(MagickFalse);
1736   pixel=alpha*p->green-beta*q->green;
1737   distance+=pixel*pixel;
1738   if (distance > fuzz)
1739     return(MagickFalse);
1740   pixel=alpha*p->blue-beta*q->blue;
1741   distance+=pixel*pixel;
1742   if (distance > fuzz)
1743     return(MagickFalse);
1744   pixel=p->opacity-q->opacity;
1745   distance+=pixel*pixel;
1746   if (distance > fuzz)
1747     return(MagickFalse);
1748   return(MagickTrue);
1749 }
1750 \f
1751 /*
1752 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1753 %                                                                             %
1754 %                                                                             %
1755 %                                                                             %
1756 +   I s O p a c i t y S i m i l a r                                           %
1757 %                                                                             %
1758 %                                                                             %
1759 %                                                                             %
1760 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1761 %
1762 %  IsOpacitySimilar() returns true if the distance between two opacity
1763 %  values is less than the specified distance in a linear color space.  This
1764 %  method is used by MatteFloodFill() and other algorithms which compare
1765 %  two opacity values.
1766 %
1767 %  The format of the IsOpacitySimilar method is:
1768 %
1769 %      void IsOpacitySimilar(const Image *image,const PixelPacket *p,
1770 %        const PixelPacket *q)
1771 %
1772 %  A description of each parameter follows:
1773 %
1774 %    o image: the image.
1775 %
1776 %    o p: Pixel p.
1777 %
1778 %    o q: Pixel q.
1779 %
1780 */
1781 MagickExport MagickBooleanType IsOpacitySimilar(const Image *image,
1782   const PixelPacket *p,const PixelPacket *q)
1783 {
1784   MagickRealType
1785     fuzz,
1786     pixel;
1787
1788   register MagickRealType
1789     distance;
1790
1791   if (image->matte == MagickFalse)
1792     return(MagickTrue);
1793   if (p->opacity == q->opacity)
1794     return(MagickTrue);
1795   fuzz=MagickMax(image->fuzz,MagickSQ1_2)*MagickMax(image->fuzz,MagickSQ1_2);
1796   pixel=(MagickRealType) p->opacity-(MagickRealType) q->opacity;
1797   distance=pixel*pixel;
1798   if (distance > fuzz)
1799     return(MagickFalse);
1800   return(MagickTrue);
1801 }
1802 \f
1803 /*
1804 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1805 %                                                                             %
1806 %                                                                             %
1807 %                                                                             %
1808 %  L i s t C o l o r I n f o                                                  %
1809 %                                                                             %
1810 %                                                                             %
1811 %                                                                             %
1812 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1813 %
1814 %  ListColorInfo() lists color names to the specified file.  Color names
1815 %  are a convenience.  Rather than defining a color by its red, green, and
1816 %  blue intensities just use a color name such as white, blue, or yellow.
1817 %
1818 %  The format of the ListColorInfo method is:
1819 %
1820 %      MagickBooleanType ListColorInfo(FILE *file,ExceptionInfo *exception)
1821 %
1822 %  A description of each parameter follows.
1823 %
1824 %    o file:  List color names to this file handle.
1825 %
1826 %    o exception: return any errors or warnings in this structure.
1827 %
1828 */
1829 MagickExport MagickBooleanType ListColorInfo(FILE *file,
1830   ExceptionInfo *exception)
1831 {
1832   char
1833     tuple[MaxTextExtent];
1834
1835   const char
1836     *path;
1837
1838   const ColorInfo
1839     **color_info;
1840
1841   register long
1842     i;
1843
1844   unsigned long
1845     number_colors;
1846
1847   /*
1848     List name and attributes of each color in the list.
1849   */
1850   if (file == (const FILE *) NULL)
1851     file=stdout;
1852   color_info=GetColorInfoList("*",&number_colors,exception);
1853   if (color_info == (const ColorInfo **) NULL)
1854     return(MagickFalse);
1855   path=(const char *) NULL;
1856   for (i=0; i < (long) number_colors; i++)
1857   {
1858     if (color_info[i]->stealth != MagickFalse)
1859       continue;
1860     if ((path == (const char *) NULL) ||
1861         (LocaleCompare(path,color_info[i]->path) != 0))
1862       {
1863         if (color_info[i]->path != (char *) NULL)
1864           (void) fprintf(file,"\nPath: %s\n\n",color_info[i]->path);
1865         (void) fprintf(file,"Name                  Color                  "
1866           "                       Compliance\n");
1867         (void) fprintf(file,"-------------------------------------------------"
1868           "------------------------------\n");
1869       }
1870     path=color_info[i]->path;
1871     (void) fprintf(file,"%-21.21s ",color_info[i]->name);
1872     GetColorTuple(&color_info[i]->color,MagickFalse,tuple);
1873     (void) fprintf(file,"%-45.45s ",tuple);
1874     if ((color_info[i]->compliance & SVGCompliance) != 0)
1875       (void) fprintf(file,"SVG ");
1876     if ((color_info[i]->compliance & X11Compliance) != 0)
1877       (void) fprintf(file,"X11 ");
1878     if ((color_info[i]->compliance & XPMCompliance) != 0)
1879       (void) fprintf(file,"XPM ");
1880     (void) fprintf(file,"\n");
1881   }
1882   color_info=(const ColorInfo **) RelinquishMagickMemory((void *) color_info);
1883   (void) fflush(file);
1884   return(MagickTrue);
1885 }
1886 \f
1887 /*
1888 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1889 %                                                                             %
1890 %                                                                             %
1891 %                                                                             %
1892 +   L o a d C o l o r L i s t                                                 %
1893 %                                                                             %
1894 %                                                                             %
1895 %                                                                             %
1896 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1897 %
1898 %  LoadColorList() loads the color configuration file which provides a mapping
1899 %  between color attributes and a color name.
1900 %
1901 %  The format of the LoadColorList method is:
1902 %
1903 %      MagickBooleanType LoadColorList(const char *xml,const char *filename,
1904 %        const unsigned long depth,ExceptionInfo *exception)
1905 %
1906 %  A description of each parameter follows:
1907 %
1908 %    o xml:  The color list in XML format.
1909 %
1910 %    o filename:  The color list filename.
1911 %
1912 %    o depth: depth of <include /> statements.
1913 %
1914 %    o exception: return any errors or warnings in this structure.
1915 %
1916 */
1917 static MagickBooleanType LoadColorList(const char *xml,const char *filename,
1918   const unsigned long depth,ExceptionInfo *exception)
1919 {
1920   char
1921     keyword[MaxTextExtent],
1922     *token;
1923
1924   ColorInfo
1925     *color_info;
1926
1927   const char
1928     *q;
1929
1930   MagickBooleanType
1931     status;
1932
1933   /*
1934     Load the color map file.
1935   */
1936   (void) LogMagickEvent(ConfigureEvent,GetMagickModule(),
1937     "Loading color file \"%s\" ...",filename);
1938   if (xml == (char *) NULL)
1939     return(MagickFalse);
1940   if (color_list == (LinkedListInfo *) NULL)
1941     {
1942       color_list=NewLinkedList(0);
1943       if (color_list == (LinkedListInfo *) NULL)
1944         {
1945           ThrowFileException(exception,ResourceLimitError,
1946             "MemoryAllocationFailed",filename);
1947           return(MagickFalse);
1948         }
1949     }
1950   status=MagickTrue;
1951   color_info=(ColorInfo *) NULL;
1952   token=AcquireString(xml);
1953   for (q=(char *) xml; *q != '\0'; )
1954   {
1955     /*
1956       Interpret XML.
1957     */
1958     GetMagickToken(q,&q,token);
1959     if (*token == '\0')
1960       break;
1961     (void) CopyMagickString(keyword,token,MaxTextExtent);
1962     if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
1963       {
1964         /*
1965           Doctype element.
1966         */
1967         while ((LocaleNCompare(q,"]>",2) != 0) && (*q != '\0'))
1968           GetMagickToken(q,&q,token);
1969         continue;
1970       }
1971     if (LocaleNCompare(keyword,"<!--",4) == 0)
1972       {
1973         /*
1974           Comment element.
1975         */
1976         while ((LocaleNCompare(q,"->",2) != 0) && (*q != '\0'))
1977           GetMagickToken(q,&q,token);
1978         continue;
1979       }
1980     if (LocaleCompare(keyword,"<include") == 0)
1981       {
1982         /*
1983           Include element.
1984         */
1985         while (((*token != '/') && (*(token+1) != '>')) && (*q != '\0'))
1986         {
1987           (void) CopyMagickString(keyword,token,MaxTextExtent);
1988           GetMagickToken(q,&q,token);
1989           if (*token != '=')
1990             continue;
1991           GetMagickToken(q,&q,token);
1992           if (LocaleCompare(keyword,"file") == 0)
1993             {
1994               if (depth > 200)
1995                 (void) ThrowMagickException(exception,GetMagickModule(),
1996                   ConfigureError,"IncludeElementNestedTooDeeply","`%s'",token);
1997               else
1998                 {
1999                   char
2000                     path[MaxTextExtent],
2001                     *xml;
2002
2003                   GetPathComponent(filename,HeadPath,path);
2004                   if (*path != '\0')
2005                     (void) ConcatenateMagickString(path,DirectorySeparator,
2006                       MaxTextExtent);
2007                   if (*token == *DirectorySeparator)
2008                     (void) CopyMagickString(path,token,MaxTextExtent);
2009                   else
2010                     (void) ConcatenateMagickString(path,token,MaxTextExtent);
2011                   xml=FileToString(path,~0,exception);
2012                   if (xml != (char *) NULL)
2013                     {
2014                       status=LoadColorList(xml,path,depth+1,exception);
2015                       xml=(char *) RelinquishMagickMemory(xml);
2016                     }
2017                 }
2018             }
2019         }
2020         continue;
2021       }
2022     if (LocaleCompare(keyword,"<color") == 0)
2023       {
2024         /*
2025           Color element.
2026         */
2027         color_info=(ColorInfo *) AcquireMagickMemory(sizeof(*color_info));
2028         if (color_info == (ColorInfo *) NULL)
2029           ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
2030         (void) ResetMagickMemory(color_info,0,sizeof(*color_info));
2031         color_info->path=ConstantString(filename);
2032         color_info->exempt=MagickFalse;
2033         color_info->signature=MagickSignature;
2034         continue;
2035       }
2036     if (color_info == (ColorInfo *) NULL)
2037       continue;
2038     if (LocaleCompare(keyword,"/>") == 0)
2039       {
2040         status=AppendValueToLinkedList(color_list,color_info);
2041         if (status == MagickFalse)
2042           (void) ThrowMagickException(exception,GetMagickModule(),
2043             ResourceLimitError,"MemoryAllocationFailed","`%s'",
2044             color_info->name);
2045         color_info=(ColorInfo *) NULL;
2046       }
2047     GetMagickToken(q,(const char **) NULL,token);
2048     if (*token != '=')
2049       continue;
2050     GetMagickToken(q,&q,token);
2051     GetMagickToken(q,&q,token);
2052     switch (*keyword)
2053     {
2054       case 'C':
2055       case 'c':
2056       {
2057         if (LocaleCompare((char *) keyword,"color") == 0)
2058           {
2059             (void) QueryMagickColor(token,&color_info->color,exception);
2060             break;
2061           }
2062         if (LocaleCompare((char *) keyword,"compliance") == 0)
2063           {
2064             long
2065               compliance;
2066
2067             compliance=color_info->compliance;
2068             if (GlobExpression(token,"*SVG*",MagickTrue) != MagickFalse)
2069               compliance|=SVGCompliance;
2070             if (GlobExpression(token,"*X11*",MagickTrue) != MagickFalse)
2071               compliance|=X11Compliance;
2072             if (GlobExpression(token,"*XPM*",MagickTrue) != MagickFalse)
2073               compliance|=XPMCompliance;
2074             color_info->compliance=(ComplianceType) compliance;
2075             break;
2076           }
2077         break;
2078       }
2079       case 'N':
2080       case 'n':
2081       {
2082         if (LocaleCompare((char *) keyword,"name") == 0)
2083           {
2084             color_info->name=ConstantString(token);
2085             break;
2086           }
2087         break;
2088       }
2089       case 'S':
2090       case 's':
2091       {
2092         if (LocaleCompare((char *) keyword,"stealth") == 0)
2093           {
2094             color_info->stealth=IsMagickTrue(token);
2095             break;
2096           }
2097         break;
2098       }
2099       default:
2100         break;
2101     }
2102   }
2103   token=(char *) RelinquishMagickMemory(token);
2104   return(status);
2105 }
2106 \f
2107 /*
2108 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2109 %                                                                             %
2110 %                                                                             %
2111 %                                                                             %
2112 %  L o a d C o l o r L i s t s                                                %
2113 %                                                                             %
2114 %                                                                             %
2115 %                                                                             %
2116 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2117 %
2118 %  LoadColorList() loads one or more color configuration file which provides a
2119 %  mapping between color attributes and a color name.
2120 %
2121 %  The format of the LoadColorLists method is:
2122 %
2123 %      MagickBooleanType LoadColorLists(const char *filename,
2124 %        ExceptionInfo *exception)
2125 %
2126 %  A description of each parameter follows:
2127 %
2128 %    o filename: the font file name.
2129 %
2130 %    o exception: return any errors or warnings in this structure.
2131 %
2132 */
2133 static MagickBooleanType LoadColorLists(const char *filename,
2134   ExceptionInfo *exception)
2135 {
2136   const StringInfo
2137     *option;
2138
2139   LinkedListInfo
2140     *options;
2141
2142   MagickRealType
2143     scale;
2144
2145   MagickStatusType
2146     status;
2147
2148   register long
2149     i;
2150
2151   /*
2152     Load built-in color map.
2153   */
2154   status=MagickFalse;
2155   if (color_list == (LinkedListInfo *) NULL)
2156     {
2157       color_list=NewLinkedList(0);
2158       if (color_list == (LinkedListInfo *) NULL)
2159         {
2160           ThrowFileException(exception,ResourceLimitError,
2161             "MemoryAllocationFailed",filename);
2162           return(MagickFalse);
2163         }
2164     }
2165   scale=(MagickRealType) ScaleCharToQuantum(1);
2166   for (i=0; i < (long) (sizeof(ColorMap)/sizeof(*ColorMap)); i++)
2167   {
2168     ColorInfo
2169       *color_info;
2170
2171     register const ColorMapInfo
2172       *p;
2173
2174     p=ColorMap+i;
2175     color_info=(ColorInfo *) AcquireMagickMemory(sizeof(*color_info));
2176     if (color_info == (ColorInfo *) NULL)
2177       {
2178         (void) ThrowMagickException(exception,GetMagickModule(),
2179           ResourceLimitError,"MemoryAllocationFailed","`%s'",color_info->name);
2180         continue;
2181       }
2182     (void) ResetMagickMemory(color_info,0,sizeof(*color_info));
2183     color_info->path=(char *) "[built-in]";
2184     color_info->name=(char *) p->name;
2185     GetMagickPixelPacket((Image *) NULL,&color_info->color);
2186     color_info->color.red=scale*p->red;
2187     color_info->color.green=scale*p->green;
2188     color_info->color.blue=scale*p->blue;
2189     color_info->color.opacity=(MagickRealType) (QuantumRange-QuantumRange*
2190       p->alpha);
2191     color_info->compliance=(ComplianceType) p->compliance;
2192     color_info->exempt=MagickTrue;
2193     color_info->signature=MagickSignature;
2194     status=AppendValueToLinkedList(color_list,color_info);
2195     if (status == MagickFalse)
2196       (void) ThrowMagickException(exception,GetMagickModule(),
2197         ResourceLimitError,"MemoryAllocationFailed","`%s'",color_info->name);
2198   }
2199   /*
2200     Load external color map.
2201   */
2202   options=GetConfigureOptions(filename,exception);
2203   option=(const StringInfo *) GetNextValueInLinkedList(options);
2204   while (option != (const StringInfo *) NULL)
2205   {
2206     status|=LoadColorList((const char *) GetStringInfoDatum(option),
2207       GetStringInfoPath(option),0,exception);
2208     option=(const StringInfo *) GetNextValueInLinkedList(options);
2209   }
2210   options=DestroyConfigureOptions(options);
2211   return(status != 0 ? MagickTrue : MagickFalse);
2212 }
2213 \f
2214 /*
2215 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2216 %                                                                             %
2217 %                                                                             %
2218 %                                                                             %
2219 %   Q u e r y C o l o r D a t a b a s e                                       %
2220 %                                                                             %
2221 %                                                                             %
2222 %                                                                             %
2223 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2224 %
2225 %  QueryColorDatabase() returns the red, green, blue, and opacity intensities
2226 %  for a given color name.
2227 %
2228 %  The format of the QueryColorDatabase method is:
2229 %
2230 %      MagickBooleanType QueryColorDatabase(const char *name,PixelPacket *color,
2231 %        ExceptionInfo *exception)
2232 %
2233 %  A description of each parameter follows:
2234 %
2235 %    o name: the color name (e.g. white, blue, yellow).
2236 %
2237 %    o color: the red, green, blue, and opacity intensities values of the
2238 %      named color in this structure.
2239 %
2240 %    o exception: return any errors or warnings in this structure.
2241 %
2242 */
2243
2244 static inline double MagickMin(const double x,const double y)
2245 {
2246   if (x < y)
2247     return(x);
2248   return(y);
2249 }
2250
2251 MagickExport MagickBooleanType QueryColorDatabase(const char *name,
2252   PixelPacket *color,ExceptionInfo *exception)
2253 {
2254   MagickBooleanType
2255     status;
2256
2257   MagickPixelPacket
2258     pixel;
2259
2260   status=QueryMagickColor(name,&pixel,exception);
2261   color->opacity=RoundToQuantum(pixel.opacity);
2262   if (pixel.colorspace == CMYKColorspace)
2263     {
2264       color->red=RoundToQuantum((MagickRealType) (QuantumRange-MagickMin(
2265         QuantumRange,(MagickRealType) (QuantumScale*pixel.red*(QuantumRange-
2266         pixel.index)+pixel.index))));
2267       color->green=RoundToQuantum((MagickRealType) (QuantumRange-MagickMin(
2268         QuantumRange,(MagickRealType) (QuantumScale*pixel.green*(QuantumRange-
2269         pixel.index)+pixel.index))));
2270       color->blue=RoundToQuantum((MagickRealType) (QuantumRange-MagickMin(
2271         QuantumRange,(MagickRealType) (QuantumScale*pixel.blue*(QuantumRange-
2272         pixel.index)+pixel.index))));
2273       return(status);
2274     }
2275   color->red=RoundToQuantum(pixel.red);
2276   color->green=RoundToQuantum(pixel.green);
2277   color->blue=RoundToQuantum(pixel.blue);
2278   return(status);
2279 }
2280 \f
2281 /*
2282 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2283 %                                                                             %
2284 %                                                                             %
2285 %                                                                             %
2286 %  Q u e r y C o l o r n a m e                                                %
2287 %                                                                             %
2288 %                                                                             %
2289 %                                                                             %
2290 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2291 %
2292 %  QueryColorname() returns a named color for the given color intensity.  If
2293 %  an exact match is not found, a rgb() color is returned instead.
2294 %
2295 %  The format of the QueryColorname method is:
2296 %
2297 %      MagickBooleanType QueryColorname(const Image *image,
2298 %        const PixelPacket *color,const ComplianceType compliance,char *name,
2299 %        ExceptionInfo *exception)
2300 %
2301 %  A description of each parameter follows.
2302 %
2303 %    o image: the image.
2304 %
2305 %    o color: the color intensities.
2306 %
2307 %    o compliance: Adhere to this color standard: SVG, X11, or XPM.
2308 %
2309 %    o name: Return the color name or hex value.
2310 %
2311 %    o exception: return any errors or warnings in this structure.
2312 %
2313 */
2314 MagickExport MagickBooleanType QueryColorname(const Image *image,
2315   const PixelPacket *color,const ComplianceType compliance,char *name,
2316   ExceptionInfo *exception)
2317 {
2318   MagickPixelPacket
2319     pixel;
2320
2321   GetMagickPixelPacket(image,&pixel);
2322   SetMagickPixelPacket(image,color,(IndexPacket *) NULL,&pixel);
2323   return(QueryMagickColorname(image,&pixel,compliance,name,exception));
2324 }
2325 \f
2326 /*
2327 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2328 %                                                                             %
2329 %                                                                             %
2330 %                                                                             %
2331 %   Q u e r y M a g i c k C o l o r                                           %
2332 %                                                                             %
2333 %                                                                             %
2334 %                                                                             %
2335 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2336 %
2337 %  QueryMagickColor() returns the red, green, blue, and opacity intensities
2338 %  for a given color name.
2339 %
2340 %  The format of the QueryMagickColor method is:
2341 %
2342 %      MagickBooleanType QueryMagickColor(const char *name,
2343 %        MagickPixelPacket *color,ExceptionInfo *exception)
2344 %
2345 %  A description of each parameter follows:
2346 %
2347 %    o name: the color name (e.g. white, blue, yellow).
2348 %
2349 %    o color: the red, green, blue, and opacity intensities values of the
2350 %      named color in this structure.
2351 %
2352 %    o exception: return any errors or warnings in this structure.
2353 %
2354 */
2355 MagickExport MagickBooleanType QueryMagickColor(const char *name,
2356   MagickPixelPacket *color,ExceptionInfo *exception)
2357 {
2358   GeometryInfo
2359     geometry_info;
2360
2361   long
2362     type;
2363
2364   MagickRealType
2365     scale;
2366
2367   MagickStatusType
2368     flags;
2369
2370   register const ColorInfo
2371     *p;
2372
2373   register long
2374     i;
2375
2376   /*
2377     Initialize color return value.
2378   */
2379   assert(name != (const char *) NULL);
2380   (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",name);
2381   assert(color != (MagickPixelPacket *) NULL);
2382   GetMagickPixelPacket((Image *) NULL,color);
2383   if ((name == (char *) NULL) || (*name == '\0'))
2384     name=BackgroundColor;
2385   while (isspace((int) ((unsigned char) *name)) != 0)
2386     name++;
2387   if (*name == '#')
2388     {
2389       char
2390         c;
2391
2392       LongPixelPacket
2393         pixel;
2394
2395       QuantumAny
2396         range;
2397
2398       unsigned long
2399         depth,
2400         n;
2401
2402       /*
2403         Parse hex color.
2404       */
2405       (void) ResetMagickMemory(&pixel,0,sizeof(pixel));
2406       name++;
2407       for (n=0; isxdigit((int) ((unsigned char) name[n])) != MagickFalse; n++) ;
2408       if ((n % 3) == 0)
2409         {
2410           do
2411           {
2412             pixel.red=pixel.green;
2413             pixel.green=pixel.blue;
2414             pixel.blue=0;
2415             for (i=(long) (n/3-1); i >= 0; i--)
2416             {
2417               c=(*name++);
2418               pixel.blue<<=4;
2419               if ((c >= '0') && (c <= '9'))
2420                 pixel.blue|=(int) (c-'0');
2421               else
2422                 if ((c >= 'A') && (c <= 'F'))
2423                   pixel.blue|=(int) c-((int) 'A'-10);
2424                 else
2425                   if ((c >= 'a') && (c <= 'f'))
2426                     pixel.blue|=(int) c-((int) 'a'-10);
2427                   else
2428                     return(MagickFalse);
2429             }
2430           } while (isxdigit((int) ((unsigned char) *name)) != MagickFalse);
2431           depth=4*(n/3);
2432         }
2433       else
2434         {
2435           if ((n % 4) != 0)
2436             {
2437               (void) ThrowMagickException(exception,GetMagickModule(),
2438                 OptionWarning,"UnrecognizedColor","`%s'",name);
2439               return(MagickFalse);
2440             }
2441           do
2442           {
2443             pixel.red=pixel.green;
2444             pixel.green=pixel.blue;
2445             pixel.blue=pixel.opacity;
2446             pixel.opacity=0;
2447             for (i=(long) (n/4-1); i >= 0; i--)
2448             {
2449               c=(*name++);
2450               pixel.opacity<<=4;
2451               if ((c >= '0') && (c <= '9'))
2452                 pixel.opacity|=(int) (c-'0');
2453               else
2454                 if ((c >= 'A') && (c <= 'F'))
2455                   pixel.opacity|=(int) c-((int) 'A'-10);
2456                 else
2457                   if ((c >= 'a') && (c <= 'f'))
2458                     pixel.opacity|=(int) c-((int) 'a'-10);
2459                   else
2460                     return(MagickFalse);
2461             }
2462           } while (isxdigit((int) ((unsigned char) *name)) != MagickFalse);
2463           depth=4*(n/4);
2464         }
2465       color->colorspace=RGBColorspace;
2466       color->matte=MagickFalse;
2467       range=GetQuantumRange(depth);
2468       color->red=(MagickRealType) ScaleAnyToQuantum(pixel.red,range);
2469       color->green=(MagickRealType) ScaleAnyToQuantum(pixel.green,range);
2470       color->blue=(MagickRealType) ScaleAnyToQuantum(pixel.blue,range);
2471       color->opacity=(MagickRealType) OpaqueOpacity;
2472       if ((n % 3) != 0)
2473         {
2474           color->matte=MagickTrue;
2475           color->opacity=(MagickRealType) (QuantumRange-ScaleAnyToQuantum(
2476             pixel.opacity,range));
2477         }
2478       color->index=0.0;
2479       return(MagickTrue);
2480     }
2481   if (strchr(name,'(') != (char *) NULL)
2482     {
2483       char
2484         colorspace[MaxTextExtent];
2485
2486       /*
2487         Parse color of the form rgb(100,255,0).
2488       */
2489       (void) CopyMagickString(colorspace,name,MaxTextExtent);
2490       for (i=0; colorspace[i] != '\0'; i++)
2491         if (colorspace[i] == '(')
2492           break;
2493       colorspace[i--]='\0';
2494       LocaleLower(colorspace);
2495       color->matte=MagickFalse;
2496       if ((i > 0) && (colorspace[i] == 'a'))
2497         {
2498           colorspace[i]='\0';
2499           color->matte=MagickTrue;
2500         }
2501       type=ParseMagickOption(MagickColorspaceOptions,MagickFalse,colorspace);
2502       if (type < 0)
2503         {
2504           (void) ThrowMagickException(exception,GetMagickModule(),
2505             OptionWarning,"UnrecognizedColor","`%s'",name);
2506           return(MagickFalse);
2507         }
2508       color->colorspace=(ColorspaceType) type;
2509       SetGeometryInfo(&geometry_info);
2510       flags=ParseGeometry(name+i+1,&geometry_info);
2511       scale=(MagickRealType) ScaleCharToQuantum(1);
2512       if ((flags & PercentValue) != 0)
2513         scale=(MagickRealType) (QuantumRange/100.0);
2514       if ((flags & RhoValue) != 0)
2515         color->red=(MagickRealType) RoundToQuantum(scale*geometry_info.rho);
2516       if ((flags & SigmaValue) != 0)
2517         color->green=(MagickRealType) RoundToQuantum(scale*geometry_info.sigma);
2518       if ((flags & XiValue) != 0)
2519         color->blue=(MagickRealType) RoundToQuantum(scale*geometry_info.xi);
2520       color->opacity=(MagickRealType) OpaqueOpacity;
2521       if ((flags & PsiValue) != 0)
2522         {
2523           if (color->colorspace == CMYKColorspace)
2524             color->index=(MagickRealType) RoundToQuantum(scale*
2525               geometry_info.psi);
2526           else
2527             if (color->matte != MagickFalse)
2528               color->opacity=(MagickRealType) RoundToQuantum((MagickRealType)
2529                 (QuantumRange-QuantumRange*geometry_info.psi));
2530         }
2531       if (((flags & ChiValue) != 0) && (color->matte != MagickFalse))
2532         color->opacity=(MagickRealType) RoundToQuantum((MagickRealType)
2533           (QuantumRange-QuantumRange*geometry_info.chi));
2534       if (LocaleCompare(colorspace,"gray") == 0)
2535         {
2536           color->green=color->red;
2537           color->blue=color->red;
2538           if (((flags & SigmaValue) != 0) && (color->matte != MagickFalse))
2539             color->opacity=(MagickRealType) RoundToQuantum((MagickRealType)
2540               (QuantumRange-QuantumRange*geometry_info.sigma));
2541         }
2542       if ((LocaleCompare(colorspace,"HSB") == 0) ||
2543           (LocaleCompare(colorspace,"HSL") == 0) ||
2544           (LocaleCompare(colorspace,"HWB") == 0))
2545         {
2546           PixelPacket
2547             pixel;
2548
2549           scale=1.0/360.0;
2550           if ((flags & PercentValue) != 0)
2551             scale=1.0/100.0;
2552           geometry_info.rho*=360.0*scale;
2553           scale=1.0/255.0;
2554           if ((flags & PercentValue) != 0)
2555             scale=1.0/100.0;
2556           geometry_info.sigma*=scale;
2557           geometry_info.xi*=scale;
2558           if (LocaleCompare(colorspace,"HSB") == 0)
2559             ConvertHSBToRGB(fmod(fmod(geometry_info.rho,360.0)+360.0,360.0)/
2560               360.0,geometry_info.sigma,geometry_info.xi,&pixel.red,
2561               &pixel.green,&pixel.blue);
2562           else
2563             if (LocaleCompare(colorspace,"HSL") == 0)
2564               ConvertHSLToRGB(fmod(fmod(geometry_info.rho,360.0)+360.0,360.0)/
2565                 360.0,geometry_info.sigma,geometry_info.xi,&pixel.red,
2566                 &pixel.green,&pixel.blue);
2567             else
2568               ConvertHWBToRGB(fmod(fmod(geometry_info.rho,360.0)+360.0,360.0)/
2569                 360.0,geometry_info.sigma,geometry_info.xi,&pixel.red,
2570                 &pixel.green,&pixel.blue);
2571           color->colorspace=RGBColorspace;
2572           color->red=(MagickRealType) pixel.red;
2573           color->green=(MagickRealType) pixel.green;
2574           color->blue=(MagickRealType) pixel.blue;
2575         }
2576       return(MagickTrue);
2577     }
2578   /*
2579     Parse named color.
2580   */
2581   p=GetColorInfo(name,exception);
2582   if (p == (const ColorInfo *) NULL)
2583     return(MagickFalse);
2584   color->colorspace=RGBColorspace;
2585   color->matte=p->color.opacity != OpaqueOpacity ? MagickTrue : MagickFalse;
2586   color->red=(MagickRealType) p->color.red;
2587   color->green=(MagickRealType) p->color.green;
2588   color->blue=(MagickRealType) p->color.blue;
2589   color->opacity=(MagickRealType) p->color.opacity;
2590   color->index=0.0;
2591   return(MagickTrue);
2592 }
2593 \f
2594 /*
2595 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2596 %                                                                             %
2597 %                                                                             %
2598 %                                                                             %
2599 %  Q u e r y M a g i c k C o l o r n a m e                                    %
2600 %                                                                             %
2601 %                                                                             %
2602 %                                                                             %
2603 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2604 %
2605 %  QueryMagickColorname() returns a named color for the given color intensity.
2606 %  If an exact match is not found, a hex value is returned instead.  For
2607 %  example an intensity of rgb:(0,0,0) returns black whereas rgb:(223,223,223)
2608 %  returns #dfdfdf.
2609 %
2610 %  The format of the QueryMagickColorname method is:
2611 %
2612 %      MagickBooleanType QueryMagickColorname(const Image *image,
2613 %        const PixelPacket *color,const ComplianceType compliance,char *name,
2614 %        ExceptionInfo *exception)
2615 %
2616 %  A description of each parameter follows.
2617 %
2618 %    o image: the image.
2619 %
2620 %    o color: the color intensities.
2621 %
2622 %    o Compliance: Adhere to this color standard: SVG, X11, or XPM.
2623 %
2624 %    o name: Return the color name or hex value.
2625 %
2626 %    o exception: return any errors or warnings in this structure.
2627 %
2628 */
2629 MagickExport MagickBooleanType QueryMagickColorname(const Image *image,
2630   const MagickPixelPacket *color,const ComplianceType compliance,
2631   char *name,ExceptionInfo *exception)
2632 {
2633   MagickPixelPacket
2634     pixel;
2635
2636   MagickRealType
2637     opacity;
2638
2639   register const ColorInfo
2640     *p;
2641
2642   *name='\0';
2643   pixel=(*color);
2644   if (compliance == XPMCompliance)
2645     {
2646       pixel.matte=MagickFalse;
2647       pixel.depth=(unsigned long) MagickMin(1.0*image->depth,16.0);
2648       GetColorTuple(&pixel,MagickTrue,name);
2649       return(MagickTrue);
2650     }
2651   GetColorTuple(&pixel,compliance != SVGCompliance ? MagickTrue : MagickFalse,
2652     name);
2653   (void) GetColorInfo("*",exception);
2654   ResetLinkedListIterator(color_list);
2655   opacity=image->matte != MagickFalse ? color->opacity : OpaqueOpacity;
2656   p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
2657   while (p != (const ColorInfo *) NULL)
2658   {
2659     if (((p->compliance & compliance) != 0) && ((p->color.red == color->red)) &&
2660          (p->color.green == color->green) && (p->color.blue == color->blue) &&
2661          (p->color.opacity == opacity))
2662       {
2663         (void) CopyMagickString(name,p->name,MaxTextExtent);
2664         break;
2665       }
2666     p=(const ColorInfo *) GetNextValueInLinkedList(color_list);
2667   }
2668   return(MagickTrue);
2669 }