blob: 214b17506b3f62563f8bc40b8fc7b248ed6ac60a [file] [log] [blame]
cristy397bede2011-01-18 23:59:59 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% AAA AAA IIIII %
7% A A A A I %
8% AAAAA AAAAA I %
9% A A A A I %
10% A A A A IIIII %
11% %
12% %
13% Read/Write AAI X Image Format %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
20% Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization %
21% 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/colorspace.h"
cristy510d06a2011-07-06 23:43:54 +000047#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000048#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/monitor.h"
56#include "MagickCore/monitor-private.h"
57#include "MagickCore/pixel.h"
58#include "MagickCore/pixel-accessor.h"
59#include "MagickCore/quantum-private.h"
60#include "MagickCore/static.h"
61#include "MagickCore/string_.h"
62#include "MagickCore/module.h"
cristy397bede2011-01-18 23:59:59 +000063
64/*
65 Forward declarations.
66*/
67static MagickBooleanType
68 WriteAAIImage(const ImageInfo *,Image *);
69
70/*
71%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72% %
73% %
74% %
75% R e a d A A I I m a g e %
76% %
77% %
78% %
79%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80%
81% ReadAAIImage() reads an AAI Dune image file and returns it. It
82% allocates the memory necessary for the new Image structure and returns a
83% pointer to the new image.
84%
85% The format of the ReadAAIImage method is:
86%
87% Image *ReadAAIImage(const ImageInfo *image_info,ExceptionInfo *exception)
88%
89% A description of each parameter follows:
90%
91% o image_info: the image info.
92%
93% o exception: return any errors or warnings in this structure.
94%
95*/
96static Image *ReadAAIImage(const ImageInfo *image_info,ExceptionInfo *exception)
97{
98 Image
99 *image;
100
101 MagickBooleanType
102 status;
103
104 register ssize_t
105 x;
106
cristy4c08aed2011-07-01 19:47:50 +0000107 register Quantum
cristy397bede2011-01-18 23:59:59 +0000108 *q;
109
110 register unsigned char
111 *p;
112
113 size_t
114 height,
115 length,
116 width;
117
118 ssize_t
119 count,
120 y;
121
122 unsigned char
123 *pixels;
124
125 /*
126 Open image file.
127 */
128 assert(image_info != (const ImageInfo *) NULL);
129 assert(image_info->signature == MagickSignature);
130 if (image_info->debug != MagickFalse)
131 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
132 image_info->filename);
133 assert(exception != (ExceptionInfo *) NULL);
134 assert(exception->signature == MagickSignature);
135 image=AcquireImage(image_info);
136 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
137 if (status == MagickFalse)
138 {
139 image=DestroyImageList(image);
140 return((Image *) NULL);
141 }
142 /*
143 Read AAI Dune image.
144 */
145 width=ReadBlobLSBLong(image);
146 height=ReadBlobLSBLong(image);
147 if (EOFBlob(image) != MagickFalse)
148 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
149 if ((width == 0UL) || (height == 0UL))
150 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
151 do
152 {
153 /*
154 Convert AAI raster image to pixel packets.
155 */
156 image->columns=width;
157 image->rows=height;
158 image->depth=8;
159 if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
160 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
161 break;
162 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,
163 4*sizeof(*pixels));
164 if (pixels == (unsigned char *) NULL)
165 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
166 length=(size_t) 4*image->columns;
167 for (y=0; y < (ssize_t) image->rows; y++)
168 {
169 count=ReadBlob(image,length,pixels);
170 if ((size_t) count != length)
171 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
172 p=pixels;
173 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000174 if (q == (const Quantum *) NULL)
cristy397bede2011-01-18 23:59:59 +0000175 break;
176 for (x=0; x < (ssize_t) image->columns; x++)
177 {
cristy4c08aed2011-07-01 19:47:50 +0000178 SetPixelBlue(image,ScaleCharToQuantum(*p++),q);
179 SetPixelGreen(image,ScaleCharToQuantum(*p++),q);
180 SetPixelRed(image,ScaleCharToQuantum(*p++),q);
cristy520bce82011-01-19 19:41:27 +0000181 if (*p == 254)
182 *p=255;
cristy4c08aed2011-07-01 19:47:50 +0000183 SetPixelAlpha(image,ScaleCharToQuantum(*p++),q);
184 if (GetPixelAlpha(image,q) != OpaqueAlpha)
cristy397bede2011-01-18 23:59:59 +0000185 image->matte=MagickTrue;
cristyed231572011-07-14 02:18:59 +0000186 q+=GetPixelChannels(image);
cristy397bede2011-01-18 23:59:59 +0000187 }
188 if (SyncAuthenticPixels(image,exception) == MagickFalse)
189 break;
cristybdadf312011-04-23 23:16:21 +0000190 if (image->previous == (Image *) NULL)
191 {
192 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
193 image->rows);
194 if (status == MagickFalse)
195 break;
196 }
cristy397bede2011-01-18 23:59:59 +0000197 }
198 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
199 if (EOFBlob(image) != MagickFalse)
200 {
201 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
202 image->filename);
203 break;
204 }
205 /*
206 Proceed to next image.
207 */
208 if (image_info->number_scenes != 0)
209 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
210 break;
211 width=ReadBlobLSBLong(image);
212 height=ReadBlobLSBLong(image);
213 if ((width != 0UL) && (height != 0UL))
214 {
215 /*
216 Allocate next image structure.
217 */
218 AcquireNextImage(image_info,image);
219 if (GetNextImageInList(image) == (Image *) NULL)
220 {
221 image=DestroyImageList(image);
222 return((Image *) NULL);
223 }
224 image=SyncNextImageInList(image);
225 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
226 GetBlobSize(image));
227 if (status == MagickFalse)
228 break;
229 }
230 } while ((width != 0UL) && (height != 0UL));
231 (void) CloseBlob(image);
232 return(GetFirstImageInList(image));
233}
234
235/*
236%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
237% %
238% %
239% %
240% R e g i s t e r A A I I m a g e %
241% %
242% %
243% %
244%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
245%
246% RegisterAAIImage() adds attributes for the AAI Dune image format to the list
247% of supported formats. The attributes include the image format tag, a
248% method to read and/or write the format, whether the format supports the
249% saving of more than one frame to the same file or blob, whether the format
250% supports native in-memory I/O, and a brief description of the format.
251%
252% The format of the RegisterAAIImage method is:
253%
254% size_t RegisterAAIImage(void)
255%
256*/
257ModuleExport size_t RegisterAAIImage(void)
258{
259 MagickInfo
260 *entry;
261
262 entry=SetMagickInfo("AAI");
263 entry->decoder=(DecodeImageHandler *) ReadAAIImage;
264 entry->encoder=(EncodeImageHandler *) WriteAAIImage;
265 entry->description=ConstantString("AAI Dune image");
266 entry->module=ConstantString("AAI");
267 (void) RegisterMagickInfo(entry);
268 return(MagickImageCoderSignature);
269}
270
271/*
272%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
273% %
274% %
275% %
276% U n r e g i s t e r A A I I m a g e %
277% %
278% %
279% %
280%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
281%
282% UnregisterAAIImage() removes format registrations made by the
283% AAI module from the list of supported formats.
284%
285% The format of the UnregisterAAIImage method is:
286%
287% UnregisterAAIImage(void)
288%
289*/
290ModuleExport void UnregisterAAIImage(void)
291{
292 (void) UnregisterMagickInfo("AAI");
293}
294
295/*
296%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
297% %
298% %
299% %
300% W r i t e A A I I m a g e %
301% %
302% %
303% %
304%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
305%
306% WriteAAIImage() writes an image to a file in AAI Dune image format.
307%
308% The format of the WriteAAIImage method is:
309%
310% MagickBooleanType WriteAAIImage(const ImageInfo *image_info,Image *image)
311%
312% A description of each parameter follows.
313%
314% o image_info: the image info.
315%
316% o image: The image.
317%
318*/
319static MagickBooleanType WriteAAIImage(const ImageInfo *image_info,Image *image)
320{
321 MagickBooleanType
322 status;
323
324 MagickOffsetType
325 scene;
326
cristy4c08aed2011-07-01 19:47:50 +0000327 register const Quantum
cristy397bede2011-01-18 23:59:59 +0000328 *restrict p;
329
330 register ssize_t
331 x;
332
333 register unsigned char
334 *restrict q;
335
336 ssize_t
337 count,
338 y;
339
340 unsigned char
341 *pixels;
342
343 /*
344 Open output image file.
345 */
346 assert(image_info != (const ImageInfo *) NULL);
347 assert(image_info->signature == MagickSignature);
348 assert(image != (Image *) NULL);
349 assert(image->signature == MagickSignature);
350 if (image->debug != MagickFalse)
351 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
352 status=OpenBlob(image_info,image,WriteBinaryBlobMode,&image->exception);
353 if (status == MagickFalse)
354 return(status);
355 scene=0;
356 do
357 {
358 /*
359 Write AAI header.
360 */
cristy510d06a2011-07-06 23:43:54 +0000361 if (IsRGBColorspace(image->colorspace) == MagickFalse)
cristy397bede2011-01-18 23:59:59 +0000362 (void) TransformImageColorspace(image,RGBColorspace);
363 (void) WriteBlobLSBLong(image,(unsigned int) image->columns);
364 (void) WriteBlobLSBLong(image,(unsigned int) image->rows);
365 /*
366 Allocate memory for pixels.
367 */
368 pixels=(unsigned char *) AcquireQuantumMemory((size_t) image->columns,
369 4*sizeof(*pixels));
370 if (pixels == (unsigned char *) NULL)
371 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
372 /*
373 Convert MIFF to AAI raster pixels.
374 */
375 for (y=0; y < (ssize_t) image->rows; y++)
376 {
377 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
cristy4c08aed2011-07-01 19:47:50 +0000378 if (p == (const Quantum *) NULL)
cristy397bede2011-01-18 23:59:59 +0000379 break;
380 q=pixels;
381 for (x=0; x < (ssize_t) image->columns; x++)
382 {
cristy4c08aed2011-07-01 19:47:50 +0000383 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
384 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
385 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
386 *q=ScaleQuantumToChar((Quantum) (image->matte != MagickFalse ?
387 GetPixelAlpha(image,p) : OpaqueAlpha));
cristy397bede2011-01-18 23:59:59 +0000388 if (*q == 255)
389 *q=254;
cristyed231572011-07-14 02:18:59 +0000390 p+=GetPixelChannels(image);
cristy397bede2011-01-18 23:59:59 +0000391 q++;
392 }
393 count=WriteBlob(image,(size_t) (q-pixels),pixels);
394 if (count != (ssize_t) (q-pixels))
395 break;
cristybdadf312011-04-23 23:16:21 +0000396 if (image->previous == (Image *) NULL)
397 {
398 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
399 image->rows);
400 if (status == MagickFalse)
401 break;
402 }
cristy397bede2011-01-18 23:59:59 +0000403 }
404 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
405 if (GetNextImageInList(image) == (Image *) NULL)
406 break;
407 image=SyncNextImageInList(image);
408 status=SetImageProgress(image,SaveImagesTag,scene++,
409 GetImageListLength(image));
410 if (status == MagickFalse)
411 break;
412 } while (image_info->adjoin != MagickFalse);
413 (void) CloseBlob(image);
414 return(MagickTrue);
415}