blob: 44d050ebd392e9fbd7eafa8a77b0c76a76daf716 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% X X CCCC %
7% X X C %
8% X C %
9% X X C %
10% X X CCCC %
11% %
12% %
13% Read Constant Color Image. %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy1454be72011-12-19 01:52:48 +000020% Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
37*/
38
39/*
40 Include declarations.
41*/
cristy4c08aed2011-07-01 19:47:50 +000042#include "MagickCore/studio.h"
43#include "MagickCore/blob.h"
44#include "MagickCore/blob-private.h"
45#include "MagickCore/cache.h"
46#include "MagickCore/color.h"
47#include "MagickCore/color-private.h"
48#include "MagickCore/exception.h"
49#include "MagickCore/exception-private.h"
50#include "MagickCore/image.h"
51#include "MagickCore/image-private.h"
52#include "MagickCore/list.h"
53#include "MagickCore/magick.h"
54#include "MagickCore/memory_.h"
55#include "MagickCore/pixel.h"
56#include "MagickCore/pixel-accessor.h"
57#include "MagickCore/quantum-private.h"
58#include "MagickCore/static.h"
59#include "MagickCore/string_.h"
60#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000061
62/*
63%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64% %
65% %
66% %
67% R e a d X C I m a g e %
68% %
69% %
70% %
71%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72%
73% ReadXCImage creates a constant image and initializes it to the
74% X server color as specified by the filename. It allocates the memory
75% necessary for the new Image structure and returns a pointer to the new
76% image.
77%
78% The format of the ReadXCImage method is:
79%
80% Image *ReadXCImage(const ImageInfo *image_info,ExceptionInfo *exception)
81%
82% A description of each parameter follows:
83%
84% o image: The image.
85%
86% o image_info: the image info.
87%
88% o exception: return any errors or warnings in this structure.
89%
90*/
91static Image *ReadXCImage(const ImageInfo *image_info,ExceptionInfo *exception)
92{
93 Image
94 *image;
95
cristy3ed852e2009-09-05 21:47:34 +000096 MagickBooleanType
97 status;
98
cristy4c08aed2011-07-01 19:47:50 +000099 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000100 pixel;
101
cristybb503372010-05-27 20:51:26 +0000102 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000103 x;
104
cristy4c08aed2011-07-01 19:47:50 +0000105 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000106 *q;
107
cristyc6da28e2011-04-28 01:41:35 +0000108 ssize_t
109 y;
110
cristy3ed852e2009-09-05 21:47:34 +0000111 /*
112 Initialize Image structure.
113 */
114 assert(image_info != (const ImageInfo *) NULL);
115 assert(image_info->signature == MagickSignature);
116 if (image_info->debug != MagickFalse)
117 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
118 image_info->filename);
119 assert(exception != (ExceptionInfo *) NULL);
120 assert(exception->signature == MagickSignature);
cristy9950d572011-10-01 18:22:35 +0000121 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000122 if (image->columns == 0)
123 image->columns=1;
124 if (image->rows == 0)
125 image->rows=1;
126 (void) CopyMagickString(image->filename,image_info->filename,MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000127 status=QueryColorCompliance((char *) image_info->filename,AllCompliance,
cristy4cc99bd2011-12-17 15:30:17 +0000128 &pixel,exception);
cristy3ed852e2009-09-05 21:47:34 +0000129 if (status == MagickFalse)
130 {
131 image=DestroyImage(image);
132 return((Image *) NULL);
133 }
cristy4cc99bd2011-12-17 15:30:17 +0000134 image->colorspace=pixel.colorspace;
135 image->matte=pixel.matte;
cristybb503372010-05-27 20:51:26 +0000136 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000137 {
138 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000139 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000140 break;
cristybb503372010-05-27 20:51:26 +0000141 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +0000142 {
cristy803640d2011-11-17 02:11:32 +0000143 SetPixelInfoPixel(image,&pixel,q);
cristyed231572011-07-14 02:18:59 +0000144 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000145 }
cristy3ed852e2009-09-05 21:47:34 +0000146 if (SyncAuthenticPixels(image,exception) == MagickFalse)
147 break;
148 }
149 return(GetFirstImageInList(image));
150}
151
152/*
153%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
154% %
155% %
156% %
157% R e g i s t e r X C I m a g e %
158% %
159% %
160% %
161%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
162%
163% RegisterXCImage() adds attributes for the XC image format to
164% the list of supported formats. The attributes include the image format
165% tag, a method to read and/or write the format, whether the format
166% supports the saving of more than one frame to the same file or blob,
167% whether the format supports native in-memory I/O, and a brief
168% description of the format.
169%
170% The format of the RegisterXCImage method is:
171%
cristybb503372010-05-27 20:51:26 +0000172% size_t RegisterXCImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000173%
174*/
cristybb503372010-05-27 20:51:26 +0000175ModuleExport size_t RegisterXCImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000176{
177 MagickInfo
178 *entry;
179
180 entry=SetMagickInfo("XC");
181 entry->decoder=(DecodeImageHandler *) ReadXCImage;
182 entry->adjoin=MagickFalse;
cristy009d7392010-07-25 22:08:41 +0000183 entry->format_type=ImplicitFormatType;
cristy3ed852e2009-09-05 21:47:34 +0000184 entry->raw=MagickTrue;
185 entry->endian_support=MagickTrue;
186 entry->description=ConstantString("Constant image uniform color");
187 entry->module=ConstantString("XC");
188 (void) RegisterMagickInfo(entry);
cristyc05417c2010-09-21 16:30:32 +0000189 entry=SetMagickInfo("CANVAS");
190 entry->decoder=(DecodeImageHandler *) ReadXCImage;
191 entry->adjoin=MagickFalse;
192 entry->format_type=ImplicitFormatType;
193 entry->raw=MagickTrue;
194 entry->endian_support=MagickTrue;
195 entry->description=ConstantString("Constant image uniform color");
196 entry->module=ConstantString("XC");
197 (void) RegisterMagickInfo(entry);
cristy3ed852e2009-09-05 21:47:34 +0000198 return(MagickImageCoderSignature);
199}
200
201/*
202%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
203% %
204% %
205% %
206% U n r e g i s t e r X C I m a g e %
207% %
208% %
209% %
210%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
211%
212% UnregisterXCImage() removes format registrations made by the
213% XC module from the list of supported formats.
214%
215% The format of the UnregisterXCImage method is:
216%
217% UnregisterXCImage(void)
218%
219*/
220ModuleExport void UnregisterXCImage(void)
221{
cristyc05417c2010-09-21 16:30:32 +0000222 (void) UnregisterMagickInfo("CANVAS");
cristy3ed852e2009-09-05 21:47:34 +0000223 (void) UnregisterMagickInfo("XC");
224}