]> granicus.if.org Git - imagemagick/blob - magick/color.h
(no commit message)
[imagemagick] / magick / color.h
1 /*
2   Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization
3   dedicated to making software imaging solutions freely available.
4   
5   You may not use this file except in compliance with the License.
6   obtain a copy of the License at
7   
8     http://www.imagemagick.org/script/license.php
9   
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15
16   MagickCore image color methods.
17 */
18 #ifndef _MAGICKCORE_COLOR_H
19 #define _MAGICKCORE_COLOR_H
20
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24
25 #include <magick/pixel.h>
26 #include <magick/exception.h>
27
28 typedef enum
29 {
30   UndefinedCompliance,
31   NoCompliance = 0x0000,
32   SVGCompliance = 0x0001,
33   X11Compliance = 0x0002,
34   XPMCompliance = 0x0004,
35   AllCompliance = 0x7fffffff
36 } ComplianceType;
37
38 typedef struct _ColorInfo
39 {
40   char
41     *path,
42     *name;
43
44   ComplianceType
45     compliance;
46
47   MagickPixelPacket
48     color;
49
50   MagickBooleanType
51     exempt,
52     stealth;
53
54   struct _ColorInfo
55     *previous,
56     *next;  /* deprecated, use GetColorInfoList() */
57
58   unsigned long
59     signature;
60 } ColorInfo;
61
62 typedef struct _ErrorInfo
63 {
64   double
65     mean_error_per_pixel,
66     normalized_mean_error,
67     normalized_maximum_error;
68 } ErrorInfo;
69
70 extern MagickExport char
71   **GetColorList(const char *,unsigned long *,ExceptionInfo *);
72
73 extern MagickExport const ColorInfo
74   *GetColorInfo(const char *,ExceptionInfo *),
75   **GetColorInfoList(const char *,unsigned long *,ExceptionInfo *);
76
77 extern MagickExport MagickBooleanType
78   ColorComponentGenesis(void),
79   IsColorSimilar(const Image *,const PixelPacket *,const PixelPacket *),
80   IsGrayImage(const Image *,ExceptionInfo *),
81   IsImageSimilar(const Image *,const Image *,long *x,long *y,ExceptionInfo *),
82   IsMagickColorSimilar(const MagickPixelPacket *,const MagickPixelPacket *),
83   IsMonochromeImage(const Image *,ExceptionInfo *),
84   IsOpacitySimilar(const Image *,const PixelPacket *,const PixelPacket *),
85   IsOpaqueImage(const Image *,ExceptionInfo *),
86   ListColorInfo(FILE *,ExceptionInfo *),
87   QueryColorDatabase(const char *,PixelPacket *,ExceptionInfo *),
88   QueryColorname(const Image *,const PixelPacket *,const ComplianceType,char *,
89     ExceptionInfo *),
90   QueryMagickColor(const char *,MagickPixelPacket *,ExceptionInfo *),
91   QueryMagickColorname(const Image *,const MagickPixelPacket *,
92     const ComplianceType,char *,ExceptionInfo *);
93
94 extern MagickExport void
95   ColorComponentTerminus(void),
96   ConcatenateColorComponent(const MagickPixelPacket *,const ChannelType,
97     const ComplianceType,char *),
98   GetColorTuple(const MagickPixelPacket *,const MagickBooleanType,char *);
99
100 #if defined(__cplusplus) || defined(c_plusplus)
101 }
102 #endif
103
104 #endif