blob: 8d994f50efce41d3e823647afbffd80fd28fb596 [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 %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 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"
cristy1b9a5f52013-10-16 01:37:17 +000048#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000049#include "MagickCore/exception.h"
50#include "MagickCore/exception-private.h"
51#include "MagickCore/image.h"
52#include "MagickCore/image-private.h"
53#include "MagickCore/list.h"
54#include "MagickCore/magick.h"
55#include "MagickCore/memory_.h"
56#include "MagickCore/pixel.h"
57#include "MagickCore/pixel-accessor.h"
58#include "MagickCore/quantum-private.h"
59#include "MagickCore/static.h"
60#include "MagickCore/string_.h"
61#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000062
63/*
64%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65% %
66% %
67% %
68% R e a d X C I m a g e %
69% %
70% %
71% %
72%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73%
74% ReadXCImage creates a constant image and initializes it to the
75% X server color as specified by the filename. It allocates the memory
76% necessary for the new Image structure and returns a pointer to the new
77% image.
78%
79% The format of the ReadXCImage method is:
80%
81% Image *ReadXCImage(const ImageInfo *image_info,ExceptionInfo *exception)
82%
83% A description of each parameter follows:
84%
85% o image: The image.
86%
87% o image_info: the image info.
88%
89% o exception: return any errors or warnings in this structure.
90%
91*/
92static Image *ReadXCImage(const ImageInfo *image_info,ExceptionInfo *exception)
93{
94 Image
95 *image;
96
cristy3ed852e2009-09-05 21:47:34 +000097 MagickBooleanType
98 status;
99
cristy4c08aed2011-07-01 19:47:50 +0000100 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000101 pixel;
102
cristybb503372010-05-27 20:51:26 +0000103 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000104 x;
105
cristy4c08aed2011-07-01 19:47:50 +0000106 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000107 *q;
108
cristyc6da28e2011-04-28 01:41:35 +0000109 ssize_t
110 y;
111
cristy3ed852e2009-09-05 21:47:34 +0000112 /*
113 Initialize Image structure.
114 */
115 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000116 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000117 if (image_info->debug != MagickFalse)
118 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
119 image_info->filename);
120 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000121 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000122 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000123 if (image->columns == 0)
124 image->columns=1;
125 if (image->rows == 0)
126 image->rows=1;
cristyacabb842014-12-14 23:36:33 +0000127 status=SetImageExtent(image,image->columns,image->rows,exception);
128 if (status == MagickFalse)
129 return(DestroyImageList(image));
cristy151b66d2015-04-15 10:50:31 +0000130 (void) CopyMagickString(image->filename,image_info->filename,MagickPathExtent);
cristy3358e732012-07-16 12:34:08 +0000131 if (*image_info->filename == '\0')
132 pixel=image->background_color;
133 else
cristy3ed852e2009-09-05 21:47:34 +0000134 {
cristy3358e732012-07-16 12:34:08 +0000135 status=QueryColorCompliance((char *) image_info->filename,AllCompliance,
136 &pixel,exception);
137 if (status == MagickFalse)
138 {
139 image=DestroyImage(image);
140 return((Image *) NULL);
141 }
cristy3ed852e2009-09-05 21:47:34 +0000142 }
cristy1b9a5f52013-10-16 01:37:17 +0000143 (void) SetImageColorspace(image,pixel.colorspace,exception);
cristy8a46d822012-08-28 23:32:39 +0000144 image->alpha_trait=pixel.alpha_trait;
cristybb503372010-05-27 20:51:26 +0000145 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000146 {
147 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000148 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000149 break;
cristybb503372010-05-27 20:51:26 +0000150 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +0000151 {
cristy11a06d32015-01-04 12:03:27 +0000152 SetPixelViaPixelInfo(image,&pixel,q);
cristyed231572011-07-14 02:18:59 +0000153 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000154 }
cristy3ed852e2009-09-05 21:47:34 +0000155 if (SyncAuthenticPixels(image,exception) == MagickFalse)
156 break;
157 }
158 return(GetFirstImageInList(image));
159}
160
161/*
162%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
163% %
164% %
165% %
166% R e g i s t e r X C I m a g e %
167% %
168% %
169% %
170%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
171%
172% RegisterXCImage() adds attributes for the XC image format to
173% the list of supported formats. The attributes include the image format
174% tag, a method to read and/or write the format, whether the format
175% supports the saving of more than one frame to the same file or blob,
176% whether the format supports native in-memory I/O, and a brief
177% description of the format.
178%
179% The format of the RegisterXCImage method is:
180%
cristybb503372010-05-27 20:51:26 +0000181% size_t RegisterXCImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000182%
183*/
cristybb503372010-05-27 20:51:26 +0000184ModuleExport size_t RegisterXCImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000185{
186 MagickInfo
187 *entry;
188
dirk06b627a2015-04-06 18:59:17 +0000189 entry=AcquireMagickInfo("XC","XC","Constant image uniform color");
cristy3ed852e2009-09-05 21:47:34 +0000190 entry->decoder=(DecodeImageHandler *) ReadXCImage;
dirk08e9a112015-02-22 01:51:41 +0000191 entry->flags^=CoderAdjoinFlag;
cristy009d7392010-07-25 22:08:41 +0000192 entry->format_type=ImplicitFormatType;
dirk08e9a112015-02-22 01:51:41 +0000193 entry->flags|=CoderRawSupportFlag;
194 entry->flags|=CoderEndianSupportFlag;
cristy3ed852e2009-09-05 21:47:34 +0000195 (void) RegisterMagickInfo(entry);
dirk06b627a2015-04-06 18:59:17 +0000196 entry=AcquireMagickInfo("XC","CANVAS","Constant image uniform color");
cristyc05417c2010-09-21 16:30:32 +0000197 entry->decoder=(DecodeImageHandler *) ReadXCImage;
dirk08e9a112015-02-22 01:51:41 +0000198 entry->flags^=CoderAdjoinFlag;
cristyc05417c2010-09-21 16:30:32 +0000199 entry->format_type=ImplicitFormatType;
dirk08e9a112015-02-22 01:51:41 +0000200 entry->flags|=CoderRawSupportFlag;
201 entry->flags|=CoderEndianSupportFlag;
cristyc05417c2010-09-21 16:30:32 +0000202 (void) RegisterMagickInfo(entry);
cristy3ed852e2009-09-05 21:47:34 +0000203 return(MagickImageCoderSignature);
204}
205
206/*
207%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
208% %
209% %
210% %
211% U n r e g i s t e r X C I m a g e %
212% %
213% %
214% %
215%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
216%
217% UnregisterXCImage() removes format registrations made by the
218% XC module from the list of supported formats.
219%
220% The format of the UnregisterXCImage method is:
221%
222% UnregisterXCImage(void)
223%
224*/
225ModuleExport void UnregisterXCImage(void)
226{
cristyc05417c2010-09-21 16:30:32 +0000227 (void) UnregisterMagickInfo("CANVAS");
cristy3ed852e2009-09-05 21:47:34 +0000228 (void) UnregisterMagickInfo("XC");
229}