blob: adb5ff78f6275fddef90fdad0b657e73ba48daa9 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% W W BBBB M M PPPP %
7% W W B B MM MM P P %
8% W W W BBBB M M M PPPP %
9% WW WW B B M M P %
10% W W BBBB M M P %
11% %
12% %
13% Read/Write Wireless Bitmap (level 0) Image Format %
14% %
15% Software Design %
16% John Cristy %
17% January 2000 %
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 Include declarations.
40*/
41#include "magick/studio.h"
42#include "magick/blob.h"
43#include "magick/blob-private.h"
44#include "magick/cache.h"
45#include "magick/color-private.h"
cristye7e40552010-04-24 21:34:22 +000046#include "magick/colormap.h"
cristy3ed852e2009-09-05 21:47:34 +000047#include "magick/colorspace.h"
48#include "magick/exception.h"
49#include "magick/exception-private.h"
50#include "magick/image.h"
51#include "magick/image-private.h"
52#include "magick/list.h"
53#include "magick/magick.h"
54#include "magick/memory_.h"
55#include "magick/monitor.h"
56#include "magick/monitor-private.h"
57#include "magick/quantum-private.h"
58#include "magick/static.h"
59#include "magick/string_.h"
60#include "magick/module.h"
61
62/*
63 Forward declarations.
64*/
65static MagickBooleanType
66 WriteWBMPImage(const ImageInfo *,Image *);
67
68/*
69%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70% %
71% %
72% %
73% R e a d W B M P I m a g e %
74% %
75% %
76% %
77%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78%
79% ReadWBMPImage() reads a WBMP (level 0) image file and returns it. It
80% allocates the memory necessary for the new Image structure and returns a
81% pointer to the new image.
82%
83% ReadWBMPImage was contributed by Milan Votava <votava@mageo.cz>.
84%
85% The format of the ReadWBMPImage method is:
86%
87% Image *ReadWBMPImage(const ImageInfo *image_info,
88% ExceptionInfo *exception)
89%
90% A description of each parameter follows:
91%
92% o image_info: the image info.
93%
94% o exception: return any errors or warnings in this structure.
95%
96*/
97
cristybb503372010-05-27 20:51:26 +000098static MagickBooleanType WBMPReadInteger(Image *image,size_t *value)
cristy3ed852e2009-09-05 21:47:34 +000099{
100 int
101 byte;
102
103 *value=0;
104 do
105 {
106 byte=ReadBlobByte(image);
107 if (byte == EOF)
108 return(MagickFalse);
109 *value<<=7;
110 *value|=(unsigned int) (byte & 0x7f);
111 } while (byte & 0x80);
112 return(MagickTrue);
113}
114
115static Image *ReadWBMPImage(const ImageInfo *image_info,
116 ExceptionInfo *exception)
117{
118 Image
119 *image;
120
121 int
122 byte;
123
cristybb503372010-05-27 20:51:26 +0000124 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000125 y;
126
127 MagickBooleanType
128 status;
129
130 register IndexPacket
131 *indexes;
132
cristybb503372010-05-27 20:51:26 +0000133 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000134 x;
135
136 register PixelPacket
137 *q;
138
cristy3ed852e2009-09-05 21:47:34 +0000139 unsigned char
140 bit;
141
142 unsigned short
143 header;
144
145 /*
146 Open image file.
147 */
148 assert(image_info != (const ImageInfo *) NULL);
149 assert(image_info->signature == MagickSignature);
150 if (image_info->debug != MagickFalse)
151 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
152 image_info->filename);
153 assert(exception != (ExceptionInfo *) NULL);
154 assert(exception->signature == MagickSignature);
155 image=AcquireImage(image_info);
156 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
157 if (status == MagickFalse)
158 {
159 image=DestroyImageList(image);
160 return((Image *) NULL);
161 }
162 if (ReadBlob(image,2,(unsigned char *) &header) == 0)
163 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
164 if (header != 0)
165 ThrowReaderException(CoderError,"OnlyLevelZerofilesSupported");
166 /*
167 Initialize image structure.
168 */
169 if (WBMPReadInteger(image,&image->columns) == MagickFalse)
170 ThrowReaderException(CorruptImageError,"CorruptWBMPimage");
171 if (WBMPReadInteger(image,&image->rows) == MagickFalse)
172 ThrowReaderException(CorruptImageError,"CorruptWBMPimage");
173 if ((image->columns == 0) || (image->rows == 0))
174 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristyd4297022010-09-16 22:59:09 +0000175 if (DiscardBlobBytes(image,image->offset) == MagickFalse)
176 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
177 image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000178 if (AcquireImageColormap(image,2) == MagickFalse)
179 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
180 if (image_info->ping != MagickFalse)
181 {
182 (void) CloseBlob(image);
183 return(GetFirstImageInList(image));
184 }
185 /*
186 Convert bi-level image to pixel packets.
187 */
cristybb503372010-05-27 20:51:26 +0000188 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000189 {
190 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
191 if (q == (PixelPacket *) NULL)
192 break;
193 indexes=GetAuthenticIndexQueue(image);
194 bit=0;
195 byte=0;
cristybb503372010-05-27 20:51:26 +0000196 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000197 {
198 if (bit == 0)
199 {
200 byte=ReadBlobByte(image);
201 if (byte == EOF)
202 ThrowReaderException(CorruptImageError,"CorruptImage");
203 }
204 indexes[x]=(IndexPacket) ((byte & (0x01 << (7-bit))) ? 1 : 0);
205 bit++;
206 if (bit == 8)
207 bit=0;
208 }
209 if (SyncAuthenticPixels(image,exception) == MagickFalse)
210 break;
cristycee97112010-05-28 00:44:52 +0000211 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
212 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000213 if (status == MagickFalse)
214 break;
215 }
216 (void) SyncImage(image);
217 if (EOFBlob(image) != MagickFalse)
218 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
219 image->filename);
220 (void) CloseBlob(image);
221 return(GetFirstImageInList(image));
222}
223
224/*
225%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
226% %
227% %
228% %
229% R e g i s t e r W B M P I m a g e %
230% %
231% %
232% %
233%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
234%
235% RegisterWBMPImage() adds attributes for the WBMP image format to
236% the list of supported formats. The attributes include the image format
237% tag, a method to read and/or write the format, whether the format
238% supports the saving of more than one frame to the same file or blob,
239% whether the format supports native in-memory I/O, and a brief
240% description of the format.
241%
242% The format of the RegisterWBMPImage method is:
243%
cristybb503372010-05-27 20:51:26 +0000244% size_t RegisterWBMPImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000245%
246*/
cristybb503372010-05-27 20:51:26 +0000247ModuleExport size_t RegisterWBMPImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000248{
249 MagickInfo
250 *entry;
251
252 entry=SetMagickInfo("WBMP");
253 entry->decoder=(DecodeImageHandler *) ReadWBMPImage;
254 entry->encoder=(EncodeImageHandler *) WriteWBMPImage;
255 entry->adjoin=MagickFalse;
256 entry->description=ConstantString("Wireless Bitmap (level 0) image");
257 entry->module=ConstantString("WBMP");
258 (void) RegisterMagickInfo(entry);
259 return(MagickImageCoderSignature);
260}
261
262/*
263%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
264% %
265% %
266% %
267% U n r e g i s t e r W B M P I m a g e %
268% %
269% %
270% %
271%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
272%
273% UnregisterWBMPImage() removes format registrations made by the
274% WBMP module from the list of supported formats.
275%
276% The format of the UnregisterWBMPImage method is:
277%
278% UnregisterWBMPImage(void)
279%
280*/
281ModuleExport void UnregisterWBMPImage(void)
282{
283 (void) UnregisterMagickInfo("WBMP");
284}
285
286/*
287%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
288% %
289% %
290% %
291% W r i t e W B M P I m a g e %
292% %
293% %
294% %
295%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
296%
297% WriteWBMPImage() writes an image to a file in the Wireless Bitmap
298% (level 0) image format.
299%
300% WriteWBMPImage was contributed by Milan Votava <votava@mageo.cz>.
301%
302% The format of the WriteWBMPImage method is:
303%
304% MagickBooleanType WriteWBMPImage(const ImageInfo *image_info,
305% Image *image)
306%
307% A description of each parameter follows.
308%
309% o image_info: the image info.
310%
311% o image: The image.
312%
313%
314*/
315
cristybb503372010-05-27 20:51:26 +0000316static void WBMPWriteInteger(Image *image,const size_t value)
cristy3ed852e2009-09-05 21:47:34 +0000317{
318 int
319 bits,
320 flag,
321 n;
322
cristybb503372010-05-27 20:51:26 +0000323 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000324 i;
325
326 unsigned char
327 buffer[5],
328 octet;
329
330 n=1;
331 bits=28;
332 flag=MagickFalse;
333 for (i=4; i >= 0; i--)
334 {
335 octet=(unsigned char) ((value >> bits) & 0x7f);
336 if ((flag == 0) && (octet != 0))
337 {
338 flag=MagickTrue;
339 n=i+1;
340 }
341 buffer[4-i]=octet | (i && (flag || octet))*(0x01 << 7);
342 bits-=7;
343 }
344 (void) WriteBlob(image,(size_t) n,buffer+5-n);
345}
346
347static MagickBooleanType WriteWBMPImage(const ImageInfo *image_info,
348 Image *image)
349{
cristybb503372010-05-27 20:51:26 +0000350 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000351 y;
352
353 MagickBooleanType
354 status;
355
356 register const IndexPacket
357 *indexes;
358
359 register const PixelPacket
360 *p;
361
cristybb503372010-05-27 20:51:26 +0000362 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000363 x;
364
365 unsigned char
366 bit,
367 byte;
368
369 /*
370 Open output image file.
371 */
372 assert(image_info != (const ImageInfo *) NULL);
373 assert(image_info->signature == MagickSignature);
374 assert(image != (Image *) NULL);
375 assert(image->signature == MagickSignature);
376 if (image->debug != MagickFalse)
377 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
378 status=OpenBlob(image_info,image,WriteBinaryBlobMode,&image->exception);
379 if (status == MagickFalse)
380 return(status);
381 if (image->colorspace != RGBColorspace)
382 (void) TransformImageColorspace(image,RGBColorspace);
383 /*
384 Convert image to a bi-level image.
385 */
386 (void) SetImageType(image,BilevelType);
387 (void) WriteBlobMSBShort(image,0);
388 WBMPWriteInteger(image,image->columns);
389 WBMPWriteInteger(image,image->rows);
cristybb503372010-05-27 20:51:26 +0000390 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000391 {
392 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
393 if (p == (const PixelPacket *) NULL)
394 break;
395 indexes=GetVirtualIndexQueue(image);
396 bit=0;
397 byte=0;
cristybb503372010-05-27 20:51:26 +0000398 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000399 {
400 if (PixelIntensity(p) >= ((MagickRealType) QuantumRange/2.0))
401 byte|=0x1 << (7-bit);
402 bit++;
403 if (bit == 8)
404 {
405 (void) WriteBlobByte(image,byte);
406 bit=0;
407 byte=0;
408 }
409 p++;
410 }
411 if (bit != 0)
412 (void) WriteBlobByte(image,byte);
cristycee97112010-05-28 00:44:52 +0000413 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
414 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000415 if (status == MagickFalse)
416 break;
417 }
418 (void) CloseBlob(image);
419 return(MagickTrue);
420}