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