blob: 73f4b6a0d5e07c0e34baf98b5da903bf70cec159 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% M M OOO N N OOO %
7% MM MM O O NN N O O %
8% M M M O O N N N O O %
9% M M O O N NN O O %
10% M M OOO N N OOO %
11% %
12% %
13% Read/Write Raw Bi-Level Bitmap Format %
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"
cristyd9ecd042012-06-17 18:26:12 +000043#include "MagickCore/attribute.h"
cristy4c08aed2011-07-01 19:47:50 +000044#include "MagickCore/blob.h"
45#include "MagickCore/blob-private.h"
46#include "MagickCore/cache.h"
47#include "MagickCore/color-private.h"
48#include "MagickCore/colormap.h"
49#include "MagickCore/colorspace.h"
cristy510d06a2011-07-06 23:43:54 +000050#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000051#include "MagickCore/exception.h"
52#include "MagickCore/exception-private.h"
53#include "MagickCore/image.h"
54#include "MagickCore/image-private.h"
55#include "MagickCore/list.h"
56#include "MagickCore/magick.h"
57#include "MagickCore/memory_.h"
58#include "MagickCore/monitor.h"
59#include "MagickCore/monitor-private.h"
60#include "MagickCore/pixel-accessor.h"
61#include "MagickCore/quantum-private.h"
62#include "MagickCore/static.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
cristy1e178e72011-08-28 19:44:34 +000070 WriteMONOImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000071
72/*
73%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
74% %
75% %
76% %
77% R e a d M O N O I m a g e %
78% %
79% %
80% %
81%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
82%
83% ReadMONOImage() reads an image of raw bites in LSB order and returns
84% it. It allocates the memory necessary for the new Image structure and
85% returns a pointer to the new image.
86%
87% The format of the ReadMONOImage method is:
88%
89% Image *ReadMONOImage(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 *ReadMONOImage(const ImageInfo *image_info,
100 ExceptionInfo *exception)
101{
102 Image
103 *image;
104
cristy3ed852e2009-09-05 21:47:34 +0000105 MagickBooleanType
106 status;
107
cristy4c08aed2011-07-01 19:47:50 +0000108 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000109 *q;
110
cristyaff6d802011-04-26 01:46:31 +0000111 register ssize_t
112 x;
113
cristybb503372010-05-27 20:51:26 +0000114 size_t
cristy3ed852e2009-09-05 21:47:34 +0000115 bit,
116 byte;
117
cristyaff6d802011-04-26 01:46:31 +0000118 ssize_t
119 y;
120
cristy3ed852e2009-09-05 21:47:34 +0000121 /*
122 Open image file.
123 */
124 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000125 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000126 if (image_info->debug != MagickFalse)
127 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
128 image_info->filename);
129 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000130 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000131 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000132 if ((image->columns == 0) || (image->rows == 0))
133 ThrowReaderException(OptionError,"MustSpecifyImageSize");
134 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
135 if (status == MagickFalse)
136 {
137 image=DestroyImageList(image);
138 return((Image *) NULL);
139 }
cristyd4297022010-09-16 22:59:09 +0000140 if (DiscardBlobBytes(image,image->offset) == MagickFalse)
141 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
142 image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000143 /*
144 Initialize image colormap.
145 */
146 image->depth=1;
cristy018f07f2011-09-04 21:15:19 +0000147 if (AcquireImageColormap(image,2,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000148 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
149 if (image_info->ping != MagickFalse)
150 {
151 (void) CloseBlob(image);
152 return(GetFirstImageInList(image));
153 }
cristyacabb842014-12-14 23:36:33 +0000154 status=SetImageExtent(image,image->columns,image->rows,exception);
155 if (status == MagickFalse)
156 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +0000157 /*
158 Convert bi-level image to pixel packets.
159 */
cristybb503372010-05-27 20:51:26 +0000160 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000161 {
162 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000163 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000164 break;
cristy3ed852e2009-09-05 21:47:34 +0000165 bit=0;
166 byte=0;
cristybb503372010-05-27 20:51:26 +0000167 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000168 {
169 if (bit == 0)
cristybb503372010-05-27 20:51:26 +0000170 byte=(size_t) ReadBlobByte(image);
cristy3ed852e2009-09-05 21:47:34 +0000171 if (image_info->endian == LSBEndian)
cristy4c08aed2011-07-01 19:47:50 +0000172 SetPixelIndex(image,((byte & 0x01) != 0) ? 0x00 : 0x01,q);
cristy3ed852e2009-09-05 21:47:34 +0000173 else
cristy4c08aed2011-07-01 19:47:50 +0000174 SetPixelIndex(image,((byte & 0x01) != 0) ? 0x01 : 0x00,q);
cristy3ed852e2009-09-05 21:47:34 +0000175 bit++;
176 if (bit == 8)
177 bit=0;
178 byte>>=1;
cristyed231572011-07-14 02:18:59 +0000179 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000180 }
181 if (SyncAuthenticPixels(image,exception) == MagickFalse)
182 break;
cristycee97112010-05-28 00:44:52 +0000183 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
cristy4c08aed2011-07-01 19:47:50 +0000184 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000185 if (status == MagickFalse)
186 break;
187 }
cristyea1a8aa2011-10-20 13:24:06 +0000188 (void) SyncImage(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000189 if (EOFBlob(image) != MagickFalse)
190 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
191 image->filename);
192 (void) CloseBlob(image);
193 return(GetFirstImageInList(image));
194}
195
196/*
197%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
198% %
199% %
200% %
201% R e g i s t e r M O N O I m a g e %
202% %
203% %
204% %
205%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
206%
207% RegisterMONOImage() adds attributes for the MONO image format to
208% the list of supported formats. The attributes include the image format
209% tag, a method to read and/or write the format, whether the format
210% supports the saving of more than one frame to the same file or blob,
211% whether the format supports native in-memory I/O, and a brief
212% description of the format.
213%
214% The format of the RegisterMONOImage method is:
215%
cristybb503372010-05-27 20:51:26 +0000216% size_t RegisterMONOImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000217%
218*/
cristybb503372010-05-27 20:51:26 +0000219ModuleExport size_t RegisterMONOImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000220{
221 MagickInfo
222 *entry;
223
dirk06b627a2015-04-06 18:59:17 +0000224 entry=AcquireMagickInfo("MONO","MONO","Raw bi-level bitmap");
cristy3ed852e2009-09-05 21:47:34 +0000225 entry->decoder=(DecodeImageHandler *) ReadMONOImage;
226 entry->encoder=(EncodeImageHandler *) WriteMONOImage;
dirk08e9a112015-02-22 01:51:41 +0000227 entry->flags|=CoderRawSupportFlag;
228 entry->flags|=CoderEndianSupportFlag;
229 entry->flags^=CoderAdjoinFlag;
cristy3ed852e2009-09-05 21:47:34 +0000230 (void) RegisterMagickInfo(entry);
231 return(MagickImageCoderSignature);
232}
233
234/*
235%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
236% %
237% %
238% %
239% U n r e g i s t e r M O N O I m a g e %
240% %
241% %
242% %
243%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
244%
245% UnregisterMONOImage() removes format registrations made by the
246% MONO module from the list of supported formats.
247%
248% The format of the UnregisterMONOImage method is:
249%
250% UnregisterMONOImage(void)
251%
252*/
253ModuleExport void UnregisterMONOImage(void)
254{
255 (void) UnregisterMagickInfo("MONO");
256}
257
258/*
259%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
260% %
261% %
262% %
263% W r i t e M O N O I m a g e %
264% %
265% %
266% %
267%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
268%
269% WriteMONOImage() writes an image of raw bits in LSB order to a file.
270%
271% The format of the WriteMONOImage method is:
272%
273% MagickBooleanType WriteMONOImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000274% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000275%
276% A description of each parameter follows.
277%
278% o image_info: the image info.
279%
280% o image: The image.
281%
cristy1e178e72011-08-28 19:44:34 +0000282% o exception: return any errors or warnings in this structure.
283%
cristy3ed852e2009-09-05 21:47:34 +0000284*/
285static MagickBooleanType WriteMONOImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000286 Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000287{
cristy3ed852e2009-09-05 21:47:34 +0000288 MagickBooleanType
289 status;
290
cristy4c08aed2011-07-01 19:47:50 +0000291 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000292 *p;
293
cristybb503372010-05-27 20:51:26 +0000294 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000295 x;
296
cristybb503372010-05-27 20:51:26 +0000297 size_t
cristy3ed852e2009-09-05 21:47:34 +0000298 bit,
299 byte;
300
cristyaff6d802011-04-26 01:46:31 +0000301 ssize_t
302 y;
303
cristy3ed852e2009-09-05 21:47:34 +0000304 /*
305 Open output image file.
306 */
307 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000308 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000309 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000310 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000311 if (image->debug != MagickFalse)
312 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000313 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000314 assert(exception->signature == MagickCoreSignature);
cristy1e178e72011-08-28 19:44:34 +0000315 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000316 if (status == MagickFalse)
317 return(status);
cristyaf8d3912014-02-21 14:50:33 +0000318 (void) TransformImageColorspace(image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000319 /*
320 Convert image to a bi-level image.
321 */
cristy018f07f2011-09-04 21:15:19 +0000322 (void) SetImageType(image,BilevelType,exception);
cristybb503372010-05-27 20:51:26 +0000323 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000324 {
cristy1e178e72011-08-28 19:44:34 +0000325 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000326 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000327 break;
cristy3ed852e2009-09-05 21:47:34 +0000328 bit=0;
329 byte=0;
cristybb503372010-05-27 20:51:26 +0000330 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000331 {
332 byte>>=1;
333 if (image->endian == LSBEndian)
334 {
cristyd0323222013-04-07 16:13:21 +0000335 if (GetPixelLuma(image,p) < (QuantumRange/2.0))
cristy3ed852e2009-09-05 21:47:34 +0000336 byte|=0x80;
337 }
338 else
cristyd0323222013-04-07 16:13:21 +0000339 if (GetPixelLuma(image,p) >= (QuantumRange/2.0))
cristy3ed852e2009-09-05 21:47:34 +0000340 byte|=0x80;
341 bit++;
342 if (bit == 8)
343 {
344 (void) WriteBlobByte(image,(unsigned char) byte);
345 bit=0;
346 byte=0;
347 }
cristyed231572011-07-14 02:18:59 +0000348 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000349 }
350 if (bit != 0)
351 (void) WriteBlobByte(image,(unsigned char) (byte >> (8-bit)));
cristycee97112010-05-28 00:44:52 +0000352 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristyaff6d802011-04-26 01:46:31 +0000353 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000354 if (status == MagickFalse)
355 break;
356 }
357 (void) CloseBlob(image);
358 return(MagickTrue);
359}