blob: c9d6e5e0e3b6d57421a799ad6de4d15cf1115f17 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% GGGG RRRR AAA Y Y %
7% G R R A A Y Y %
8% G GG RRRR AAAAA Y %
9% G G R R A A Y %
10% GGG R R A A Y %
11% %
12% %
13% Read/Write RAW Gray Image Format %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy7e41fe82010-12-04 23:12:08 +000020% Copyright 1999-2011 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/colorspace.h"
cristy510d06a2011-07-06 23:43:54 +000047#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000048#include "MagickCore/constitute.h"
49#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/monitor.h"
57#include "MagickCore/monitor-private.h"
58#include "MagickCore/pixel.h"
59#include "MagickCore/pixel-accessor.h"
60#include "MagickCore/quantum-private.h"
61#include "MagickCore/static.h"
62#include "MagickCore/statistic.h"
63#include "MagickCore/string_.h"
64#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000065
66/*
67 Forward declarations.
68*/
69static MagickBooleanType
70 WriteGRAYImage(const ImageInfo *,Image *);
71
72/*
73%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
74% %
75% %
76% %
77% R e a d G R A Y I m a g e %
78% %
79% %
80% %
81%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
82%
83% ReadGRAYImage() reads an image of raw grayscale samples and returns
84% it. It allocates the memory necessary for the new Image structure and
cristybee00932011-01-15 20:28:27 +000085% returns a pointer to the new image.
cristy3ed852e2009-09-05 21:47:34 +000086%
87% The format of the ReadGRAYImage method is:
88%
89% Image *ReadGRAYImage(const ImageInfo *image_info,
90% ExceptionInfo *exception)
91%
92% A description of each parameter follows:
93%
94% o image_info: the image info.
95%
96% o exception: return any errors or warnings in this structure.
97%
98*/
99static Image *ReadGRAYImage(const ImageInfo *image_info,
100 ExceptionInfo *exception)
101{
102 Image
103 *canvas_image,
104 *image;
105
cristy3ed852e2009-09-05 21:47:34 +0000106 MagickBooleanType
107 status;
108
109 MagickOffsetType
110 scene;
111
112 QuantumInfo
113 *quantum_info;
114
115 QuantumType
116 quantum_type;
117
cristy3ed852e2009-09-05 21:47:34 +0000118 size_t
119 length;
120
cristybee00932011-01-15 20:28:27 +0000121 ssize_t
cristyebc891a2011-04-24 23:04:16 +0000122 count,
123 y;
cristybee00932011-01-15 20:28:27 +0000124
cristy3ed852e2009-09-05 21:47:34 +0000125 unsigned char
126 *pixels;
127
128 /*
129 Open image file.
130 */
131 assert(image_info != (const ImageInfo *) NULL);
132 assert(image_info->signature == MagickSignature);
133 if (image_info->debug != MagickFalse)
134 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
135 image_info->filename);
136 assert(exception != (ExceptionInfo *) NULL);
137 assert(exception->signature == MagickSignature);
138 image=AcquireImage(image_info);
139 if ((image->columns == 0) || (image->rows == 0))
140 ThrowReaderException(OptionError,"MustSpecifyImageSize");
141 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
142 if (status == MagickFalse)
143 {
144 image=DestroyImageList(image);
145 return((Image *) NULL);
146 }
cristy55a91cd2010-12-01 00:57:40 +0000147 if (DiscardBlobBytes(image,(size_t) image->offset) == MagickFalse)
cristyd4297022010-09-16 22:59:09 +0000148 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
149 image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000150 /*
151 Create virtual canvas to support cropping (i.e. image.gray[100x100+10+20]).
152 */
153 canvas_image=CloneImage(image,image->extract_info.width,1,MagickFalse,
154 exception);
155 (void) SetImageVirtualPixelMethod(canvas_image,BlackVirtualPixelMethod);
156 quantum_type=GrayQuantum;
157 quantum_info=AcquireQuantumInfo(image_info,canvas_image);
158 if (quantum_info == (QuantumInfo *) NULL)
159 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
160 pixels=GetQuantumPixels(quantum_info);
161 if (image_info->number_scenes != 0)
162 while (image->scene < image_info->scene)
163 {
164 /*
165 Skip to next image.
166 */
167 image->scene++;
168 length=GetQuantumExtent(canvas_image,quantum_info,quantum_type);
cristybb503372010-05-27 20:51:26 +0000169 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000170 {
171 count=ReadBlob(image,length,pixels);
172 if (count != (ssize_t) length)
173 break;
174 }
175 }
176 scene=0;
177 count=0;
178 length=0;
179 do
180 {
181 /*
182 Read pixels to virtual canvas image then push to image.
183 */
184 if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
185 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
186 break;
187 if (scene == 0)
188 {
189 length=GetQuantumExtent(canvas_image,quantum_info,quantum_type);
190 count=ReadBlob(image,length,pixels);
cristy3ed852e2009-09-05 21:47:34 +0000191 }
cristybb503372010-05-27 20:51:26 +0000192 for (y=0; y < (ssize_t) image->extract_info.height; y++)
cristy3ed852e2009-09-05 21:47:34 +0000193 {
cristy4c08aed2011-07-01 19:47:50 +0000194 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000195 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000196
cristybb503372010-05-27 20:51:26 +0000197 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000198 x;
199
cristy4c08aed2011-07-01 19:47:50 +0000200 register Quantum
cristyc47d1f82009-11-26 01:44:43 +0000201 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000202
cristy93b13ba2009-09-12 04:01:09 +0000203 if (count != (ssize_t) length)
204 {
205 ThrowFileException(exception,CorruptImageError,
206 "UnexpectedEndOfFile",image->filename);
207 break;
208 }
cristy3ed852e2009-09-05 21:47:34 +0000209 q=GetAuthenticPixels(canvas_image,0,0,canvas_image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000210 if (q == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000211 break;
212 length=ImportQuantumPixels(canvas_image,(CacheView *) NULL,quantum_info,
213 quantum_type,pixels,exception);
214 if (SyncAuthenticPixels(canvas_image,exception) == MagickFalse)
215 break;
cristy3ed852e2009-09-05 21:47:34 +0000216 if (((y-image->extract_info.y) >= 0) &&
cristybb503372010-05-27 20:51:26 +0000217 ((y-image->extract_info.y) < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000218 {
219 p=GetVirtualPixels(canvas_image,canvas_image->extract_info.x,0,
220 image->columns,1,exception);
221 q=QueueAuthenticPixels(image,0,y-image->extract_info.y,image->columns,
222 1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000223 if ((p == (const Quantum *) NULL) ||
224 (q == (const Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +0000225 break;
cristybb503372010-05-27 20:51:26 +0000226 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000227 {
cristy4c08aed2011-07-01 19:47:50 +0000228 SetPixelRed(image,GetPixelRed(canvas_image,p),q);
229 SetPixelGreen(image,GetPixelGreen(canvas_image,p),q);
230 SetPixelBlue(image,GetPixelBlue(canvas_image,p),q);
cristyed231572011-07-14 02:18:59 +0000231 p+=GetPixelChannels(canvas_image);
232 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000233 }
234 if (SyncAuthenticPixels(image,exception) == MagickFalse)
235 break;
236 }
237 if (image->previous == (Image *) NULL)
238 {
cristycee97112010-05-28 00:44:52 +0000239 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
cristybee00932011-01-15 20:28:27 +0000240 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000241 if (status == MagickFalse)
242 break;
243 }
cristy93b13ba2009-09-12 04:01:09 +0000244 count=ReadBlob(image,length,pixels);
cristy3ed852e2009-09-05 21:47:34 +0000245 }
246 SetQuantumImageType(image,quantum_type);
cristy3ed852e2009-09-05 21:47:34 +0000247 /*
248 Proceed to next image.
249 */
250 if (image_info->number_scenes != 0)
251 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
252 break;
253 if (count == (ssize_t) length)
254 {
255 /*
256 Allocate next image structure.
257 */
258 AcquireNextImage(image_info,image);
259 if (GetNextImageInList(image) == (Image *) NULL)
260 {
261 image=DestroyImageList(image);
262 return((Image *) NULL);
263 }
264 image=SyncNextImageInList(image);
265 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
266 GetBlobSize(image));
267 if (status == MagickFalse)
268 break;
269 }
270 scene++;
271 } while (count == (ssize_t) length);
272 quantum_info=DestroyQuantumInfo(quantum_info);
cristy01a3f332009-10-27 14:17:37 +0000273 InheritException(&image->exception,&canvas_image->exception);
cristy3ed852e2009-09-05 21:47:34 +0000274 canvas_image=DestroyImage(canvas_image);
275 (void) CloseBlob(image);
276 return(GetFirstImageInList(image));
277}
278
279/*
280%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
281% %
282% %
283% %
284% R e g i s t e r G R A Y I m a g e %
285% %
286% %
287% %
288%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
289%
290% RegisterGRAYImage() adds attributes for the GRAY image format to
291% the list of supported formats. The attributes include the image format
292% tag, a method to read and/or write the format, whether the format
293% supports the saving of more than one frame to the same file or blob,
294% whether the format supports native in-memory I/O, and a brief
295% description of the format.
296%
297% The format of the RegisterGRAYImage method is:
298%
cristybb503372010-05-27 20:51:26 +0000299% size_t RegisterGRAYImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000300%
301*/
cristybb503372010-05-27 20:51:26 +0000302ModuleExport size_t RegisterGRAYImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000303{
304 MagickInfo
305 *entry;
306
307 entry=SetMagickInfo("GRAY");
308 entry->decoder=(DecodeImageHandler *) ReadGRAYImage;
309 entry->encoder=(EncodeImageHandler *) WriteGRAYImage;
310 entry->raw=MagickTrue;
311 entry->endian_support=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +0000312 entry->description=ConstantString("Raw gray samples");
313 entry->module=ConstantString("GRAY");
314 (void) RegisterMagickInfo(entry);
315 return(MagickImageCoderSignature);
316}
317
318/*
319%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
320% %
321% %
322% %
323% U n r e g i s t e r G R A Y I m a g e %
324% %
325% %
326% %
327%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
328%
329% UnregisterGRAYImage() removes format registrations made by the
330% GRAY module from the list of supported formats.
331%
332% The format of the UnregisterGRAYImage method is:
333%
334% UnregisterGRAYImage(void)
335%
336*/
337ModuleExport void UnregisterGRAYImage(void)
338{
339 (void) UnregisterMagickInfo("GRAY");
340}
341
342/*
343%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
344% %
345% %
346% %
347% W r i t e G R A Y I m a g e %
348% %
349% %
350% %
351%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
352%
353% WriteGRAYImage() writes an image to a file as gray scale intensity
354% values.
355%
356% The format of the WriteGRAYImage method is:
357%
358% MagickBooleanType WriteGRAYImage(const ImageInfo *image_info,
359% Image *image)
360%
361% A description of each parameter follows.
362%
363% o image_info: the image info.
364%
365% o image: The image.
366%
367*/
368static MagickBooleanType WriteGRAYImage(const ImageInfo *image_info,
369 Image *image)
370{
cristy3ed852e2009-09-05 21:47:34 +0000371 MagickBooleanType
372 status;
373
374 MagickOffsetType
375 scene;
376
377 QuantumInfo
378 *quantum_info;
379
380 QuantumType
381 quantum_type;
382
cristy3ed852e2009-09-05 21:47:34 +0000383 size_t
384 length;
385
cristyebc891a2011-04-24 23:04:16 +0000386 ssize_t
387 count,
388 y;
389
cristy3ed852e2009-09-05 21:47:34 +0000390 unsigned char
391 *pixels;
392
393 /*
394 Open output image file.
395 */
396 assert(image_info != (const ImageInfo *) NULL);
397 assert(image_info->signature == MagickSignature);
398 assert(image != (Image *) NULL);
399 assert(image->signature == MagickSignature);
400 if (image->debug != MagickFalse)
401 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
402 status=OpenBlob(image_info,image,WriteBinaryBlobMode,&image->exception);
403 if (status == MagickFalse)
404 return(status);
405 scene=0;
406 do
407 {
408 /*
409 Write grayscale pixels.
410 */
cristy510d06a2011-07-06 23:43:54 +0000411 if (IsRGBColorspace(image->colorspace) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000412 (void) TransformImageColorspace(image,RGBColorspace);
413 quantum_type=GrayQuantum;
414 quantum_info=AcquireQuantumInfo(image_info,image);
415 if (quantum_info == (QuantumInfo *) NULL)
416 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
417 pixels=GetQuantumPixels(quantum_info);
cristybb503372010-05-27 20:51:26 +0000418 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000419 {
cristy4c08aed2011-07-01 19:47:50 +0000420 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000421 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000422
423 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
cristy4c08aed2011-07-01 19:47:50 +0000424 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000425 break;
cristy4c08aed2011-07-01 19:47:50 +0000426 length=ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
cristy3ed852e2009-09-05 21:47:34 +0000427 quantum_type,pixels,&image->exception);
428 count=WriteBlob(image,length,pixels);
429 if (count != (ssize_t) length)
430 break;
431 if (image->previous == (Image *) NULL)
432 {
cristycee97112010-05-28 00:44:52 +0000433 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy2b1f0a32010-08-21 18:45:41 +0000434 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000435 if (status == MagickFalse)
436 break;
437 }
438 }
439 quantum_info=DestroyQuantumInfo(quantum_info);
440 if (GetNextImageInList(image) == (Image *) NULL)
441 break;
442 image=SyncNextImageInList(image);
443 status=SetImageProgress(image,SaveImagesTag,scene++,
444 GetImageListLength(image));
445 if (status == MagickFalse)
446 break;
447 } while (image_info->adjoin != MagickFalse);
448 (void) CloseBlob(image);
449 return(MagickTrue);
450}