]> granicus.if.org Git - imagemagick/blob - magick/color.h
(no commit message)
[imagemagick] / magick / color.h
1 /*
2   Copyright 1999-2009 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     stealth;
52
53   struct _ColorInfo
54     *previous,
55     *next;  /* deprecated, use GetColorInfoList() */
56
57   unsigned long
58     signature;
59 } ColorInfo;
60
61 typedef struct _ColorPacket
62 {
63   PixelPacket
64     pixel;
65
66   IndexPacket
67     index;
68
69   MagickSizeType
70     count;
71 } ColorPacket;
72
73 typedef struct _ErrorInfo
74 {
75   double
76     mean_error_per_pixel,
77     normalized_mean_error,
78     normalized_maximum_error;
79 } ErrorInfo;
80
81 extern MagickExport char
82   **GetColorList(const char *,unsigned long *,ExceptionInfo *);
83
84 extern MagickExport const ColorInfo
85   *GetColorInfo(const char *,ExceptionInfo *),
86   **GetColorInfoList(const char *,unsigned long *,ExceptionInfo *);
87
88 extern MagickExport ColorPacket
89   *GetImageHistogram(const Image *,unsigned long *,ExceptionInfo *);
90
91 extern MagickExport Image
92   *UniqueImageColors(const Image *,ExceptionInfo *);
93
94 extern MagickExport MagickBooleanType
95   IsColorSimilar(const Image *,const PixelPacket *,const PixelPacket *),
96   IsGrayImage(const Image *,ExceptionInfo *),
97   IsHistogramImage(const Image *,ExceptionInfo *),
98   IsImageSimilar(const Image *,const Image *,long *x,long *y,ExceptionInfo *),
99   IsMagickColorSimilar(const MagickPixelPacket *,const MagickPixelPacket *),
100   IsMonochromeImage(const Image *,ExceptionInfo *),
101   IsOpacitySimilar(const Image *,const PixelPacket *,const PixelPacket *),
102   IsOpaqueImage(const Image *,ExceptionInfo *),
103   IsPaletteImage(const Image *,ExceptionInfo *),
104   ListColorInfo(FILE *,ExceptionInfo *),
105   QueryColorDatabase(const char *,PixelPacket *,ExceptionInfo *),
106   QueryColorname(const Image *,const PixelPacket *,const ComplianceType,char *,
107     ExceptionInfo *),
108   QueryMagickColor(const char *,MagickPixelPacket *,ExceptionInfo *),
109   QueryMagickColorname(const Image *,const MagickPixelPacket *,
110     const ComplianceType,char *,ExceptionInfo *);
111
112 extern MagickExport unsigned long
113   GetNumberColors(const Image *,FILE *,ExceptionInfo *);
114
115 extern MagickExport void
116   ConcatenateColorComponent(const MagickPixelPacket *,const ChannelType,
117     const ComplianceType,char *),
118   DestroyColorList(void),
119   GetColorTuple(const MagickPixelPacket *,const MagickBooleanType,char *);
120
121 #if defined(__cplusplus) || defined(c_plusplus)
122 }
123 #endif
124
125 #endif