blob: 126a66e2ca1a8c9e9def90a127c770f42184aca7 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy7e41fe82010-12-04 23:12:08 +00002 Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 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 MagickWand pixel wand methods.
17*/
18#ifndef _MAGICKWAND_PIXEL_WAND_H
19#define _MAGICKWAND_PIXEL_WAND_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
25typedef struct _PixelWand
26 PixelWand;
27
28extern WandExport char
29 *PixelGetColorAsNormalizedString(const PixelWand *),
30 *PixelGetColorAsString(const PixelWand *),
31 *PixelGetException(const PixelWand *,ExceptionType *);
32
33extern WandExport double
34 PixelGetAlpha(const PixelWand *),
35 PixelGetBlack(const PixelWand *),
36 PixelGetBlue(const PixelWand *),
37 PixelGetCyan(const PixelWand *),
38 PixelGetFuzz(const PixelWand *),
39 PixelGetGreen(const PixelWand *),
40 PixelGetMagenta(const PixelWand *),
41 PixelGetOpacity(const PixelWand *),
42 PixelGetRed(const PixelWand *),
43 PixelGetYellow(const PixelWand *);
44
45extern WandExport ExceptionType
46 PixelGetExceptionType(const PixelWand *);
47
48extern WandExport IndexPacket
49 PixelGetIndex(const PixelWand *);
50
51extern WandExport MagickBooleanType
52 IsPixelWand(const PixelWand *),
53 IsPixelWandSimilar(PixelWand *,PixelWand *,const double),
54 PixelClearException(PixelWand *),
55 PixelSetColor(PixelWand *,const char *);
56
57extern WandExport PixelWand
58 *ClonePixelWand(const PixelWand *),
cristybb503372010-05-27 20:51:26 +000059 **ClonePixelWands(const PixelWand **,const size_t),
cristy3ed852e2009-09-05 21:47:34 +000060 *DestroyPixelWand(PixelWand *),
cristybb503372010-05-27 20:51:26 +000061 **DestroyPixelWands(PixelWand **,const size_t),
cristy3ed852e2009-09-05 21:47:34 +000062 *NewPixelWand(void),
cristybb503372010-05-27 20:51:26 +000063 **NewPixelWands(const size_t);
cristy3ed852e2009-09-05 21:47:34 +000064
65extern WandExport Quantum
66 PixelGetAlphaQuantum(const PixelWand *),
67 PixelGetBlackQuantum(const PixelWand *),
68 PixelGetBlueQuantum(const PixelWand *),
69 PixelGetCyanQuantum(const PixelWand *),
70 PixelGetGreenQuantum(const PixelWand *),
71 PixelGetMagentaQuantum(const PixelWand *),
72 PixelGetOpacityQuantum(const PixelWand *),
73 PixelGetRedQuantum(const PixelWand *),
74 PixelGetYellowQuantum(const PixelWand *);
75
cristybb503372010-05-27 20:51:26 +000076extern WandExport size_t
cristy3ed852e2009-09-05 21:47:34 +000077 PixelGetColorCount(const PixelWand *);
78
79extern WandExport void
80 ClearPixelWand(PixelWand *),
81 PixelGetHSL(const PixelWand *,double *,double *,double *),
cristy9e1d53f2010-12-16 13:44:43 +000082 PixelGetMagickColor(const PixelWand *,MagickPixelPacket *),
cristy3ed852e2009-09-05 21:47:34 +000083 PixelGetQuantumColor(const PixelWand *,PixelPacket *),
84 PixelSetAlpha(PixelWand *,const double),
85 PixelSetAlphaQuantum(PixelWand *,const Quantum),
86 PixelSetBlack(PixelWand *,const double),
87 PixelSetBlackQuantum(PixelWand *,const Quantum),
88 PixelSetBlue(PixelWand *,const double),
89 PixelSetBlueQuantum(PixelWand *,const Quantum),
90 PixelSetColorFromWand(PixelWand *,const PixelWand *),
cristybb503372010-05-27 20:51:26 +000091 PixelSetColorCount(PixelWand *,const size_t),
cristy3ed852e2009-09-05 21:47:34 +000092 PixelSetCyan(PixelWand *,const double),
93 PixelSetCyanQuantum(PixelWand *,const Quantum),
94 PixelSetFuzz(PixelWand *,const double),
95 PixelSetGreen(PixelWand *,const double),
96 PixelSetGreenQuantum(PixelWand *,const Quantum),
97 PixelSetHSL(PixelWand *,const double,const double,const double),
98 PixelSetIndex(PixelWand *,const IndexPacket),
99 PixelSetMagenta(PixelWand *,const double),
100 PixelSetMagentaQuantum(PixelWand *,const Quantum),
101 PixelSetMagickColor(PixelWand *,const MagickPixelPacket *),
102 PixelSetOpacity(PixelWand *,const double),
103 PixelSetOpacityQuantum(PixelWand *,const Quantum),
104 PixelSetQuantumColor(PixelWand *,const PixelPacket *),
105 PixelSetRed(PixelWand *,const double),
106 PixelSetRedQuantum(PixelWand *,const Quantum),
107 PixelSetYellow(PixelWand *,const double),
108 PixelSetYellowQuantum(PixelWand *,const Quantum);
109
110#if defined(__cplusplus) || defined(c_plusplus)
111}
112#endif
113
114#endif