2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13 % Read/Write X Windows System Bitmap Format %
20 % Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
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. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42 #include "magick/studio.h"
43 #include "magick/blob.h"
44 #include "magick/blob-private.h"
45 #include "magick/cache.h"
46 #include "magick/color-private.h"
47 #include "magick/colormap.h"
48 #include "magick/colorspace.h"
49 #include "magick/exception.h"
50 #include "magick/exception-private.h"
51 #include "magick/image.h"
52 #include "magick/image-private.h"
53 #include "magick/list.h"
54 #include "magick/magick.h"
55 #include "magick/memory_.h"
56 #include "magick/monitor.h"
57 #include "magick/monitor-private.h"
58 #include "magick/quantum-private.h"
59 #include "magick/static.h"
60 #include "magick/string_.h"
61 #include "magick/module.h"
62 #include "magick/utility.h"
67 static MagickBooleanType
68 WriteXBMImage(const ImageInfo *,Image *);
71 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81 % IsXBM() returns MagickTrue if the image format type, identified by the
82 % magick string, is XBM.
84 % The format of the IsXBM method is:
86 % MagickBooleanType IsXBM(const unsigned char *magick,const size_t length)
88 % A description of each parameter follows:
90 % o magick: compare image format pattern against these bytes.
92 % o length: Specifies the length of the magick string.
95 static MagickBooleanType IsXBM(const unsigned char *magick,const size_t length)
99 if (memcmp(magick,"#define",7) == 0)
105 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109 % R e a d X B M I m a g e %
113 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
115 % ReadXBMImage() reads an X11 bitmap image file and returns it. It
116 % allocates the memory necessary for the new Image structure and returns a
117 % pointer to the new image.
119 % The format of the ReadXBMImage method is:
121 % Image *ReadXBMImage(const ImageInfo *image_info,ExceptionInfo *exception)
123 % A description of each parameter follows:
125 % o image_info: the image info.
127 % o exception: return any errors or warnings in this structure.
131 static int XBMInteger(Image *image,short int *hex_digits)
142 c=ReadBlobByte(image);
149 if (isxdigit(c) != MagickFalse)
151 value=(int) ((size_t) value << 4)+hex_digits[c];
155 if ((hex_digits[c]) < 0 && (flag != 0))
161 static Image *ReadXBMImage(const ImageInfo *image_info,ExceptionInfo *exception)
164 buffer[MaxTextExtent],
186 register unsigned char
213 assert(image_info != (const ImageInfo *) NULL);
214 assert(image_info->signature == MagickSignature);
215 if (image_info->debug != MagickFalse)
216 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
217 image_info->filename);
218 assert(exception != (ExceptionInfo *) NULL);
219 assert(exception->signature == MagickSignature);
220 image=AcquireImage(image_info);
221 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
222 if (status == MagickFalse)
224 image=DestroyImageList(image);
225 return((Image *) NULL);
228 Read X bitmap header.
232 while (ReadBlobString(image,buffer) != (char *) NULL)
233 if (sscanf(buffer,"#define %s %lu",name,&width) == 2)
234 if ((strlen(name) >= 6) &&
235 (LocaleCompare(name+strlen(name)-6,"_width") == 0))
237 while (ReadBlobString(image,buffer) != (char *) NULL)
238 if (sscanf(buffer,"#define %s %lu",name,&height) == 2)
239 if ((strlen(name) >= 7) &&
240 (LocaleCompare(name+strlen(name)-7,"_height") == 0))
242 image->columns=width;
245 image->storage_class=PseudoClass;
248 Scan until hex digits.
251 while (ReadBlobString(image,buffer) != (char *) NULL)
253 if (sscanf(buffer,"static short %s = {",name) == 1)
256 if (sscanf(buffer,"static unsigned char %s = {",name) == 1)
259 if (sscanf(buffer,"static char %s = {",name) == 1)
263 p=(unsigned char *) strrchr(name,'_');
264 if (p == (unsigned char *) NULL)
265 p=(unsigned char *) name;
268 if (LocaleCompare("bits[]",(char *) p) == 0)
271 if ((image->columns == 0) || (image->rows == 0) ||
272 (EOFBlob(image) != MagickFalse))
273 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
275 Initialize image structure.
277 if (AcquireImageColormap(image,image->colors) == MagickFalse)
278 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
282 image->colormap[0].red=(Quantum) QuantumRange;
283 image->colormap[0].green=(Quantum) QuantumRange;
284 image->colormap[0].blue=(Quantum) QuantumRange;
285 image->colormap[1].red=(Quantum) 0;
286 image->colormap[1].green=(Quantum) 0;
287 image->colormap[1].blue=(Quantum) 0;
288 if (image_info->ping != MagickFalse)
290 (void) CloseBlob(image);
291 return(GetFirstImageInList(image));
294 Initialize hex values.
296 hex_digits[(int) '0']=0;
297 hex_digits[(int) '1']=1;
298 hex_digits[(int) '2']=2;
299 hex_digits[(int) '3']=3;
300 hex_digits[(int) '4']=4;
301 hex_digits[(int) '5']=5;
302 hex_digits[(int) '6']=6;
303 hex_digits[(int) '7']=7;
304 hex_digits[(int) '8']=8;
305 hex_digits[(int) '9']=9;
306 hex_digits[(int) 'A']=10;
307 hex_digits[(int) 'B']=11;
308 hex_digits[(int) 'C']=12;
309 hex_digits[(int) 'D']=13;
310 hex_digits[(int) 'E']=14;
311 hex_digits[(int) 'F']=15;
312 hex_digits[(int) 'a']=10;
313 hex_digits[(int) 'b']=11;
314 hex_digits[(int) 'c']=12;
315 hex_digits[(int) 'd']=13;
316 hex_digits[(int) 'e']=14;
317 hex_digits[(int) 'f']=15;
318 hex_digits[(int) 'x']=0;
319 hex_digits[(int) ' ']=(-1);
320 hex_digits[(int) ',']=(-1);
321 hex_digits[(int) '}']=(-1);
322 hex_digits[(int) '\n']=(-1);
323 hex_digits[(int) '\t']=(-1);
328 if (((image->columns % 16) != 0) &&
329 ((image->columns % 16) < 9) && (version == 10))
331 bytes_per_line=(image->columns+7)/8+padding;
332 length=(size_t) image->rows;
333 data=(unsigned char *) AcquireQuantumMemory(length,bytes_per_line*
335 if (data == (unsigned char *) NULL)
336 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
339 for (i=0; i < (ssize_t) (bytes_per_line*image->rows); (i+=2))
341 value=(size_t) XBMInteger(image,hex_digits);
342 *p++=(unsigned char) value;
343 if ((padding == 0) || (((i+2) % bytes_per_line) != 0))
344 *p++=(unsigned char) (value >> 8);
347 for (i=0; i < (ssize_t) (bytes_per_line*image->rows); i++)
349 value=(size_t) XBMInteger(image,hex_digits);
350 *p++=(unsigned char) value;
353 Convert X bitmap image to pixel packets.
356 for (y=0; y < (ssize_t) image->rows; y++)
358 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
359 if (q == (PixelPacket *) NULL)
361 indexes=GetAuthenticIndexQueue(image);
364 for (x=0; x < (ssize_t) image->columns; x++)
367 byte=(size_t) (*p++);
368 indexes[x]=(IndexPacket) ((byte & 0x01) != 0 ? 0x01 : 0x00);
374 if (SyncAuthenticPixels(image,exception) == MagickFalse)
376 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
378 if (status == MagickFalse)
381 data=(unsigned char *) RelinquishMagickMemory(data);
382 (void) SyncImage(image);
383 (void) CloseBlob(image);
384 return(GetFirstImageInList(image));
388 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
392 % R e g i s t e r X B M I m a g e %
396 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
398 % RegisterXBMImage() adds attributes for the XBM image format to
399 % the list of supported formats. The attributes include the image format
400 % tag, a method to read and/or write the format, whether the format
401 % supports the saving of more than one frame to the same file or blob,
402 % whether the format supports native in-memory I/O, and a brief
403 % description of the format.
405 % The format of the RegisterXBMImage method is:
407 % size_t RegisterXBMImage(void)
410 ModuleExport size_t RegisterXBMImage(void)
415 entry=SetMagickInfo("XBM");
416 entry->decoder=(DecodeImageHandler *) ReadXBMImage;
417 entry->encoder=(EncodeImageHandler *) WriteXBMImage;
418 entry->magick=(IsImageFormatHandler *) IsXBM;
419 entry->adjoin=MagickFalse;
420 entry->description=ConstantString(
421 "X Windows system bitmap (black and white)");
422 entry->module=ConstantString("XBM");
423 (void) RegisterMagickInfo(entry);
424 return(MagickImageCoderSignature);
428 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
432 % U n r e g i s t e r X B M I m a g e %
436 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
438 % UnregisterXBMImage() removes format registrations made by the
439 % XBM module from the list of supported formats.
441 % The format of the UnregisterXBMImage method is:
443 % UnregisterXBMImage(void)
446 ModuleExport void UnregisterXBMImage(void)
448 (void) UnregisterMagickInfo("XBM");
452 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
456 % W r i t e X B M I m a g e %
460 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
462 % Procedure WriteXBMImage() writes an image to a file in the X bitmap format.
464 % The format of the WriteXBMImage method is:
466 % MagickBooleanType WriteXBMImage(const ImageInfo *image_info,Image *image)
468 % A description of each parameter follows.
470 % o image_info: the image info.
472 % o image: The image.
476 static MagickBooleanType WriteXBMImage(const ImageInfo *image_info,Image *image)
479 basename[MaxTextExtent],
480 buffer[MaxTextExtent];
488 register const PixelPacket
502 Open output image file.
504 assert(image_info != (const ImageInfo *) NULL);
505 assert(image_info->signature == MagickSignature);
506 assert(image != (Image *) NULL);
507 assert(image->signature == MagickSignature);
508 if (image->debug != MagickFalse)
509 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
510 status=OpenBlob(image_info,image,WriteBinaryBlobMode,&image->exception);
511 if (status == MagickFalse)
513 if (image->colorspace != RGBColorspace)
514 (void) TransformImageColorspace(image,RGBColorspace);
516 Write X bitmap header.
518 GetPathComponent(image->filename,BasePath,basename);
519 (void) FormatMagickString(buffer,MaxTextExtent,"#define %s_width %.20g\n",
520 basename,(double) image->columns);
521 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
522 (void) FormatMagickString(buffer,MaxTextExtent,"#define %s_height %.20g\n",
523 basename,(double) image->rows);
524 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
525 (void) FormatMagickString(buffer,MaxTextExtent,
526 "static char %s_bits[] = {\n",basename);
527 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
528 (void) CopyMagickString(buffer," ",MaxTextExtent);
529 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
531 Convert MIFF to X bitmap pixels.
533 (void) SetImageType(image,BilevelType);
539 (void) CopyMagickString(buffer," ",MaxTextExtent);
540 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
541 for (y=0; y < (ssize_t) image->rows; y++)
543 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
544 if (p == (const PixelPacket *) NULL)
546 for (x=0; x < (ssize_t) image->columns; x++)
549 if (PixelIntensity(p) < ((MagickRealType) QuantumRange/2.0))
555 Write a bitmap byte to the image file.
557 (void) FormatMagickString(buffer,MaxTextExtent,"0x%02X, ",
558 (unsigned int) (byte & 0xff));
559 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
563 (void) CopyMagickString(buffer,"\n ",MaxTextExtent);
564 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
575 Write a bitmap byte to the image file.
578 (void) FormatMagickString(buffer,MaxTextExtent,"0x%02X, ",
579 (unsigned int) (byte & 0xff));
580 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
584 (void) CopyMagickString(buffer,"\n ",MaxTextExtent);
585 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
591 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
593 if (status == MagickFalse)
596 (void) CopyMagickString(buffer,"};\n",MaxTextExtent);
597 (void) WriteBlob(image,strlen(buffer),(unsigned char *) buffer);
598 (void) CloseBlob(image);