blob: 91b4ac64398b46cce82d31cc97e9e490d35ff881 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% PPPP IIIII X X %
7% P P I X X %
8% PPPP I X %
9% P I X X %
10% P IIIII X X %
11% %
12% %
13% Read Alias/Wavefront RLE Image Format %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy16af1cb2009-12-11 21:38:29 +000020% Copyright 1999-2010 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*/
42#include "magick/studio.h"
43#include "magick/blob.h"
44#include "magick/blob-private.h"
45#include "magick/cache.h"
cristye7e40552010-04-24 21:34:22 +000046#include "magick/colormap.h"
cristy3ed852e2009-09-05 21:47:34 +000047#include "magick/exception.h"
48#include "magick/exception-private.h"
49#include "magick/image.h"
50#include "magick/image-private.h"
51#include "magick/list.h"
52#include "magick/magick.h"
53#include "magick/memory_.h"
54#include "magick/monitor.h"
55#include "magick/monitor-private.h"
56#include "magick/quantum-private.h"
57#include "magick/static.h"
58#include "magick/string_.h"
59#include "magick/module.h"
60
61/*
62%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63% %
64% %
65% %
66% R e a d P I X I m a g e %
67% %
68% %
69% %
70%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71%
72% ReadPIXImage() reads a Alias/Wavefront RLE image file and returns it.
73% It allocates the memory necessary for the new Image structure and returns a
74% pointer to the new image.
75%
76% The format of the ReadPIXImage method is:
77%
78% Image *ReadPIXImage(const ImageInfo *image_info,ExceptionInfo *exception)
79%
80% A description of each parameter follows:
81%
82% o image_info: the image info.
83%
84% o exception: return any errors or warnings in this structure.
85%
86%
87*/
88static Image *ReadPIXImage(const ImageInfo *image_info,ExceptionInfo *exception)
89{
90 Image
91 *image;
92
93 IndexPacket
94 index;
95
96 long
97 y;
98
99 MagickBooleanType
100 status;
101
102 Quantum
103 blue,
104 green,
105 red;
106
107 register IndexPacket
108 *indexes;
109
110 register long
111 x;
112
113 register PixelPacket
114 *q;
115
116 size_t
117 length;
118
119 unsigned long
120 bits_per_pixel,
121 height,
122 width;
123
124 /*
125 Open image file.
126 */
127 assert(image_info != (const ImageInfo *) NULL);
128 assert(image_info->signature == MagickSignature);
129 if (image_info->debug != MagickFalse)
130 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
131 image_info->filename);
132 assert(exception != (ExceptionInfo *) NULL);
133 assert(exception->signature == MagickSignature);
134 image=AcquireImage(image_info);
135 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
136 if (status == MagickFalse)
137 {
138 image=DestroyImageList(image);
139 return((Image *) NULL);
140 }
141 /*
142 Read PIX image.
143 */
144 width=ReadBlobMSBShort(image);
145 height=ReadBlobMSBShort(image);
146 (void) ReadBlobMSBShort(image); /* x-offset */
147 (void) ReadBlobMSBShort(image); /* y-offset */
148 bits_per_pixel=ReadBlobMSBShort(image);
149 if ((width == 0UL) || (height == 0UL) || ((bits_per_pixel != 8) &&
150 (bits_per_pixel != 24)))
151 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
152 do
153 {
154 /*
155 Initialize image structure.
156 */
157 image->columns=width;
158 image->rows=height;
159 if (bits_per_pixel == 8)
160 if (AcquireImageColormap(image,256) == MagickFalse)
161 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
162 if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
163 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
164 break;
165 /*
166 Convert PIX raster image to pixel packets.
167 */
168 red=(Quantum) 0;
169 green=(Quantum) 0;
170 blue=(Quantum) 0;
171 index=(IndexPacket) 0;
172 length=0;
173 for (y=0; y < (long) image->rows; y++)
174 {
175 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
176 if (q == (PixelPacket *) NULL)
177 break;
178 indexes=GetAuthenticIndexQueue(image);
179 for (x=0; x < (long) image->columns; x++)
180 {
181 if (length == 0)
182 {
183 length=(size_t) ReadBlobByte(image);
184 if (bits_per_pixel == 8)
185 index=ScaleCharToQuantum((unsigned char) ReadBlobByte(image));
186 else
187 {
188 blue=ScaleCharToQuantum((unsigned char) ReadBlobByte(image));
189 green=ScaleCharToQuantum((unsigned char) ReadBlobByte(image));
190 red=ScaleCharToQuantum((unsigned char) ReadBlobByte(image));
191 }
192 }
193 if (image->storage_class == PseudoClass)
194 indexes[x]=index;
195 q->blue=blue;
196 q->green=green;
197 q->red=red;
198 length--;
199 q++;
200 }
201 if (SyncAuthenticPixels(image,exception) == MagickFalse)
202 break;
203 if (image->previous == (Image *) NULL)
204 {
205 status=SetImageProgress(image,LoadImageTag,y,image->rows);
206 if (status == MagickFalse)
207 break;
208 }
209 }
210 if (image->storage_class == PseudoClass)
211 (void) SyncImage(image);
212 if (EOFBlob(image) != MagickFalse)
213 {
214 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
215 image->filename);
216 break;
217 }
218 /*
219 Proceed to next image.
220 */
221 if (image_info->number_scenes != 0)
222 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
223 break;
224 width=ReadBlobMSBLong(image);
225 height=ReadBlobMSBLong(image);
226 (void) ReadBlobMSBShort(image);
227 (void) ReadBlobMSBShort(image);
228 bits_per_pixel=ReadBlobMSBShort(image);
229 status=(width != 0UL) && (height == 0UL) && ((bits_per_pixel == 8) ||
230 (bits_per_pixel == 24)) ? MagickTrue : MagickFalse;
231 if (status == MagickTrue)
232 {
233 /*
234 Allocate next image structure.
235 */
236 AcquireNextImage(image_info,image);
237 if (GetNextImageInList(image) == (Image *) NULL)
238 {
239 image=DestroyImageList(image);
240 return((Image *) NULL);
241 }
242 image=SyncNextImageInList(image);
243 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
244 GetBlobSize(image));
245 if (status == MagickFalse)
246 break;
247 }
248 } while (status == MagickTrue);
249 (void) CloseBlob(image);
250 return(GetFirstImageInList(image));
251}
252
253/*
254%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
255% %
256% %
257% %
258% R e g i s t e r P I X I m a g e %
259% %
260% %
261% %
262%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
263%
264% RegisterPIXImage() adds attributes for the PIX image format to
265% the list of supported formats. The attributes include the image format
266% tag, a method to read and/or write the format, whether the format
267% supports the saving of more than one frame to the same file or blob,
268% whether the format supports native in-memory I/O, and a brief
269% description of the format.
270%
271% The format of the RegisterPIXImage method is:
272%
273% unsigned long RegisterPIXImage(void)
274%
275*/
276ModuleExport unsigned long RegisterPIXImage(void)
277{
278 MagickInfo
279 *entry;
280
281 entry=SetMagickInfo("PIX");
282 entry->decoder=(DecodeImageHandler *) ReadPIXImage;
283 entry->description=ConstantString("Alias/Wavefront RLE image format");
284 entry->module=ConstantString("PIX");
285 (void) RegisterMagickInfo(entry);
286 return(MagickImageCoderSignature);
287}
288
289/*
290%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
291% %
292% %
293% %
294% U n r e g i s t e r P I X I m a g e %
295% %
296% %
297% %
298%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
299%
300% UnregisterPIXImage() removes format registrations made by the
301% PIX module from the list of supported formats.
302%
303% The format of the UnregisterPIXImage method is:
304%
305% UnregisterPIXImage(void)
306%
307*/
308ModuleExport void UnregisterPIXImage(void)
309{
310 (void) UnregisterMagickInfo("PIX");
311}