blob: 8a28aeb8f02d87071734b5d0eecad6b9d004b840 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% PPPP CCCC L %
7% P P C L %
8% PPPP C L %
9% P C L %
10% P CCCC LLLLL %
11% %
12% %
13% Read/Write HP PCL Printer Format %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy1454be72011-12-19 01:52:48 +000020% Copyright 1999-2012 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/attribute.h"
44#include "MagickCore/blob.h"
45#include "MagickCore/blob-private.h"
46#include "MagickCore/cache.h"
47#include "MagickCore/color.h"
48#include "MagickCore/color-private.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/constitute.h"
52#include "MagickCore/delegate.h"
53#include "MagickCore/draw.h"
54#include "MagickCore/exception.h"
55#include "MagickCore/exception-private.h"
56#include "MagickCore/geometry.h"
57#include "MagickCore/image.h"
58#include "MagickCore/image-private.h"
59#include "MagickCore/list.h"
60#include "MagickCore/magick.h"
61#include "MagickCore/memory_.h"
62#include "MagickCore/monitor.h"
63#include "MagickCore/monitor-private.h"
64#include "MagickCore/option.h"
65#include "MagickCore/pixel-accessor.h"
66#include "MagickCore/profile.h"
67#include "MagickCore/property.h"
68#include "MagickCore/resource_.h"
69#include "MagickCore/quantum-private.h"
70#include "MagickCore/static.h"
71#include "MagickCore/string_.h"
72#include "MagickCore/module.h"
73#include "MagickCore/token.h"
74#include "MagickCore/transform.h"
75#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000076
77/*
78 Forward declarations.
79*/
80static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000081 WritePCLImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000082
83/*
84%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
85% %
86% %
87% %
88% I s P C L %
89% %
90% %
91% %
92%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
93%
94% IsPCL() returns MagickTrue if the image format type, identified by the
95% magick string, is PCL.
96%
97% The format of the IsPCL method is:
98%
99% MagickBooleanType IsPCL(const unsigned char *magick,const size_t length)
100%
101% A description of each parameter follows:
102%
103% o magick: compare image format pattern against these bytes.
104%
105% o length: Specifies the length of the magick string.
106%
107*/
108static MagickBooleanType IsPCL(const unsigned char *magick,const size_t length)
109{
110 if (length < 4)
111 return(MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +0000112 if (memcmp(magick,"\033E\033&",4) == 0)
113 return(MagickFalse);
cristy7dca4892010-09-21 16:10:30 +0000114 if (memcmp(magick,"\033E\033",3) == 0)
115 return(MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +0000116 return(MagickFalse);
117}
118
119/*
120%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
121% %
122% %
123% %
124% R e a d P C L I m a g e %
125% %
126% %
127% %
128%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
129%
130% ReadPCLImage() reads a Printer Control Language image file and returns it.
131% It allocates the memory necessary for the new Image structure and returns a
132% pointer to the new image.
133%
134% The format of the ReadPCLImage method is:
135%
136% Image *ReadPCLImage(const ImageInfo *image_info,ExceptionInfo *exception)
137%
138% A description of each parameter follows:
139%
140% o image_info: the image info.
141%
142% o exception: return any errors or warnings in this structure.
143%
144*/
145static Image *ReadPCLImage(const ImageInfo *image_info,ExceptionInfo *exception)
146{
147#define CropBox "CropBox"
148#define DeviceCMYK "DeviceCMYK"
149#define MediaBox "MediaBox"
150#define RenderPCLText " Rendering PCL... "
151
152 char
153 command[MaxTextExtent],
154 density[MaxTextExtent],
155 filename[MaxTextExtent],
156 geometry[MaxTextExtent],
157 options[MaxTextExtent],
158 input_filename[MaxTextExtent];
159
anthony1afdc7a2011-10-05 11:54:28 +0000160 const char
161 *option;
162
cristy3ed852e2009-09-05 21:47:34 +0000163 const DelegateInfo
164 *delegate_info;
165
166 Image
167 *image,
168 *next_image;
169
170 ImageInfo
171 *read_info;
172
173 MagickBooleanType
174 cmyk,
175 status;
176
177 PointInfo
178 delta;
179
180 RectangleInfo
181 bounding_box,
182 page;
183
184 register char
185 *p;
186
cristybb503372010-05-27 20:51:26 +0000187 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000188 c;
189
190 SegmentInfo
191 bounds;
192
cristybb503372010-05-27 20:51:26 +0000193 size_t
cristy3ed852e2009-09-05 21:47:34 +0000194 height,
195 width;
196
cristyaff6d802011-04-26 01:46:31 +0000197 ssize_t
198 count;
199
cristy3ed852e2009-09-05 21:47:34 +0000200 assert(image_info != (const ImageInfo *) NULL);
201 assert(image_info->signature == MagickSignature);
202 if (image_info->debug != MagickFalse)
203 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
204 image_info->filename);
205 assert(exception != (ExceptionInfo *) NULL);
206 assert(exception->signature == MagickSignature);
207 /*
208 Open image file.
209 */
cristy9950d572011-10-01 18:22:35 +0000210 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000211 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
212 if (status == MagickFalse)
213 {
214 image=DestroyImageList(image);
215 return((Image *) NULL);
216 }
217 status=AcquireUniqueSymbolicLink(image_info->filename,input_filename);
218 if (status == MagickFalse)
219 {
220 ThrowFileException(exception,FileOpenError,"UnableToCreateTemporaryFile",
221 image_info->filename);
222 image=DestroyImageList(image);
223 return((Image *) NULL);
224 }
225 /*
226 Set the page density.
227 */
228 delta.x=DefaultResolution;
229 delta.y=DefaultResolution;
cristy2a11bef2011-10-28 18:33:11 +0000230 if ((image->resolution.x == 0.0) || (image->resolution.y == 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000231 {
232 GeometryInfo
233 geometry_info;
234
235 MagickStatusType
236 flags;
237
238 flags=ParseGeometry(PSDensityGeometry,&geometry_info);
cristy2a11bef2011-10-28 18:33:11 +0000239 image->resolution.x=geometry_info.rho;
240 image->resolution.y=geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +0000241 if ((flags & SigmaValue) == 0)
cristy2a11bef2011-10-28 18:33:11 +0000242 image->resolution.y=image->resolution.x;
cristy3ed852e2009-09-05 21:47:34 +0000243 }
244 /*
245 Determine page geometry from the PCL media box.
246 */
247 cmyk=image->colorspace == CMYKColorspace ? MagickTrue : MagickFalse;
248 count=0;
249 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box));
250 (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
251 (void) ResetMagickMemory(&page,0,sizeof(page));
252 (void) ResetMagickMemory(command,0,sizeof(command));
253 p=command;
254 for (c=ReadBlobByte(image); c != EOF; c=ReadBlobByte(image))
255 {
256 if (image_info->page != (char *) NULL)
257 continue;
258 /*
259 Note PCL elements.
260 */
261 *p++=(char) c;
262 if ((c != (int) '/') && (c != '\n') &&
263 ((size_t) (p-command) < (MaxTextExtent-1)))
264 continue;
265 *p='\0';
266 p=command;
267 /*
268 Is this a CMYK document?
269 */
270 if (LocaleNCompare(DeviceCMYK,command,strlen(DeviceCMYK)) == 0)
271 cmyk=MagickTrue;
272 if (LocaleNCompare(CropBox,command,strlen(CropBox)) == 0)
273 {
274 /*
275 Note region defined by crop box.
276 */
277 count=(ssize_t) sscanf(command,"CropBox [%lf %lf %lf %lf",
278 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
279 if (count != 4)
280 count=(ssize_t) sscanf(command,"CropBox[%lf %lf %lf %lf",
281 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
282 }
283 if (LocaleNCompare(MediaBox,command,strlen(MediaBox)) == 0)
284 {
285 /*
286 Note region defined by media box.
287 */
288 count=(ssize_t) sscanf(command,"MediaBox [%lf %lf %lf %lf",
289 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
290 if (count != 4)
291 count=(ssize_t) sscanf(command,"MediaBox[%lf %lf %lf %lf",
292 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
293 }
294 if (count != 4)
295 continue;
296 /*
297 Set PCL render geometry.
298 */
cristybb503372010-05-27 20:51:26 +0000299 width=(size_t) floor(bounds.x2-bounds.x1+0.5);
300 height=(size_t) floor(bounds.y2-bounds.y1+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000301 if (width > page.width)
302 page.width=width;
303 if (height > page.height)
304 page.height=height;
305 }
306 (void) CloseBlob(image);
307 /*
308 Render PCL with the GhostPCL delegate.
309 */
310 if ((page.width == 0) || (page.height == 0))
311 (void) ParseAbsoluteGeometry(PSPageGeometry,&page);
312 if (image_info->page != (char *) NULL)
313 (void) ParseAbsoluteGeometry(image_info->page,&page);
cristyb51dff52011-05-19 16:55:47 +0000314 (void) FormatLocaleString(geometry,MaxTextExtent,"%.20gx%.20g",(double)
cristye8c25f92010-06-03 00:53:06 +0000315 page.width,(double) page.height);
cristy3ed852e2009-09-05 21:47:34 +0000316 if (image_info->monochrome != MagickFalse)
317 delegate_info=GetDelegateInfo("pcl:mono",(char *) NULL,exception);
318 else
319 if (cmyk != MagickFalse)
320 delegate_info=GetDelegateInfo("pcl:cmyk",(char *) NULL,exception);
321 else
322 delegate_info=GetDelegateInfo("pcl:color",(char *) NULL,exception);
323 if (delegate_info == (const DelegateInfo *) NULL)
324 return((Image *) NULL);
325 *options='\0';
326 if ((page.width == 0) || (page.height == 0))
327 (void) ParseAbsoluteGeometry(PSPageGeometry,&page);
328 if (image_info->page != (char *) NULL)
329 (void) ParseAbsoluteGeometry(image_info->page,&page);
cristyb51dff52011-05-19 16:55:47 +0000330 (void) FormatLocaleString(density,MaxTextExtent,"%gx%g",
cristy2a11bef2011-10-28 18:33:11 +0000331 image->resolution.x,image->resolution.y);
332 page.width=(size_t) floor(page.width*image->resolution.x/delta.x+0.5);
333 page.height=(size_t) floor(page.height*image->resolution.y/delta.y+
cristy06609ee2010-03-17 20:21:27 +0000334 0.5);
cristyb51dff52011-05-19 16:55:47 +0000335 (void) FormatLocaleString(options,MaxTextExtent,"-g%.20gx%.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000336 page.width,(double) page.height);
cristy3ed852e2009-09-05 21:47:34 +0000337 image=DestroyImage(image);
338 read_info=CloneImageInfo(image_info);
339 *read_info->magick='\0';
340 if (read_info->number_scenes != 0)
341 {
342 if (read_info->number_scenes != 1)
cristyb51dff52011-05-19 16:55:47 +0000343 (void) FormatLocaleString(options,MaxTextExtent,"-dLastPage=%.20g",
cristye8c25f92010-06-03 00:53:06 +0000344 (double) (read_info->scene+read_info->number_scenes));
cristy3ed852e2009-09-05 21:47:34 +0000345 else
cristyb51dff52011-05-19 16:55:47 +0000346 (void) FormatLocaleString(options,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000347 "-dFirstPage=%.20g -dLastPage=%.20g",(double) read_info->scene+1,
348 (double) (read_info->scene+read_info->number_scenes));
cristy3ed852e2009-09-05 21:47:34 +0000349 read_info->number_scenes=0;
350 if (read_info->scenes != (char *) NULL)
351 *read_info->scenes='\0';
352 }
anthony1afdc7a2011-10-05 11:54:28 +0000353 option=GetImageOption(read_info,"authenticate");
354 if (option != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000355 (void) FormatLocaleString(options+strlen(options),MaxTextExtent,
anthony1afdc7a2011-10-05 11:54:28 +0000356 " -sPCLPassword=%s",option);
cristy3ed852e2009-09-05 21:47:34 +0000357 (void) CopyMagickString(filename,read_info->filename,MaxTextExtent);
358 (void) AcquireUniqueFilename(read_info->filename);
cristyb51dff52011-05-19 16:55:47 +0000359 (void) FormatLocaleString(command,MaxTextExtent,
cristy3ed852e2009-09-05 21:47:34 +0000360 GetDelegateCommands(delegate_info),
361 read_info->antialias != MagickFalse ? 4 : 1,
362 read_info->antialias != MagickFalse ? 4 : 1,density,options,
363 read_info->filename,input_filename);
cristy6de4bc22010-01-12 17:10:35 +0000364 status=SystemCommand(MagickFalse,read_info->verbose,command,exception) != 0 ?
365 MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +0000366 image=ReadImage(read_info,exception);
367 (void) RelinquishUniqueFileResource(read_info->filename);
368 (void) RelinquishUniqueFileResource(input_filename);
369 read_info=DestroyImageInfo(read_info);
370 if (image == (Image *) NULL)
371 ThrowReaderException(DelegateError,"PCLDelegateFailed");
372 if (LocaleCompare(image->magick,"BMP") == 0)
373 {
374 Image
375 *cmyk_image;
376
cristyc82a27b2011-10-21 01:07:16 +0000377 cmyk_image=ConsolidateCMYKImages(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000378 if (cmyk_image != (Image *) NULL)
379 {
380 image=DestroyImageList(image);
381 image=cmyk_image;
382 }
383 }
384 do
385 {
386 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
387 image->page=page;
388 next_image=SyncNextImageInList(image);
389 if (next_image != (Image *) NULL)
390 image=next_image;
391 } while (next_image != (Image *) NULL);
392 return(GetFirstImageInList(image));
393}
394
395/*
396%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
397% %
398% %
399% %
400% R e g i s t e r P C L I m a g e %
401% %
402% %
403% %
404%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
405%
406% RegisterPCLImage() adds attributes for the PCL image format to
407% the list of supported formats. The attributes include the image format
408% tag, a method to read and/or write the format, whether the format
409% supports the saving of more than one frame to the i file or blob,
410% whether the format supports native in-memory I/O, and a brief
411% description of the format.
412%
413% The format of the RegisterPCLImage method is:
414%
cristybb503372010-05-27 20:51:26 +0000415% size_t RegisterPCLImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000416%
417*/
cristybb503372010-05-27 20:51:26 +0000418ModuleExport size_t RegisterPCLImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000419{
420 MagickInfo
421 *entry;
422
423 entry=SetMagickInfo("PCL");
424 entry->decoder=(DecodeImageHandler *) ReadPCLImage;
425 entry->encoder=(EncodeImageHandler *) WritePCLImage;
426 entry->magick=(IsImageFormatHandler *) IsPCL;
427 entry->blob_support=MagickFalse;
428 entry->seekable_stream=MagickTrue;
429 entry->thread_support=EncoderThreadSupport;
430 entry->description=ConstantString("Printer Control Language");
431 entry->module=ConstantString("PCL");
432 (void) RegisterMagickInfo(entry);
433 return(MagickImageCoderSignature);
434}
435
436/*
437%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
438% %
439% %
440% %
441% U n r e g i s t e r P C L I m a g e %
442% %
443% %
444% %
445%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
446%
447% UnregisterPCLImage() removes format registrations made by the PCL module
448% from the list of supported formats.
449%
450% The format of the UnregisterPCLImage method is:
451%
452% UnregisterPCLImage(void)
453%
454*/
455ModuleExport void UnregisterPCLImage(void)
456{
457 (void) UnregisterMagickInfo("PCL");
458}
459
460/*
461%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
462% %
463% %
464% %
465% W r i t e P C L I m a g e %
466% %
467% %
468% %
469%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
470%
471% WritePCLImage() writes an image in the Page Control Language encoded
472% image format.
473%
474% The format of the WritePCLImage method is:
475%
cristy1e178e72011-08-28 19:44:34 +0000476% MagickBooleanType WritePCLImage(const ImageInfo *image_info,
477% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000478%
479% A description of each parameter follows.
480%
481% o image_info: the image info.
482%
483% o image: The image.
484%
cristy1e178e72011-08-28 19:44:34 +0000485% o exception: return any errors or warnings in this structure.
486%
cristy3ed852e2009-09-05 21:47:34 +0000487*/
488
489static size_t PCLDeltaCompressImage(const size_t length,
490 const unsigned char *previous_pixels,const unsigned char *pixels,
491 unsigned char *compress_pixels)
492{
493 int
494 delta,
495 j,
496 replacement;
497
cristybb503372010-05-27 20:51:26 +0000498 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000499 i,
500 x;
501
502 register unsigned char
503 *q;
504
505 q=compress_pixels;
cristybb503372010-05-27 20:51:26 +0000506 for (x=0; x < (ssize_t) length; )
cristy3ed852e2009-09-05 21:47:34 +0000507 {
508 j=0;
cristybb503372010-05-27 20:51:26 +0000509 for (i=0; x < (ssize_t) length; x++)
cristy3ed852e2009-09-05 21:47:34 +0000510 {
511 if (*pixels++ != *previous_pixels++)
512 {
513 i=1;
514 break;
515 }
516 j++;
517 }
cristy91e52622010-11-03 01:05:41 +0000518 while (x < (ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +0000519 {
cristy91e52622010-11-03 01:05:41 +0000520 x++;
cristy3ed852e2009-09-05 21:47:34 +0000521 if (*pixels == *previous_pixels)
522 break;
523 i++;
524 previous_pixels++;
525 pixels++;
526 }
527 if (i == 0)
528 break;
529 replacement=j >= 31 ? 31 : j;
530 j-=replacement;
531 delta=i >= 8 ? 8 : i;
532 *q++=(unsigned char) (((delta-1) << 5) | replacement);
533 if (replacement == 31)
534 {
535 for (replacement=255; j != 0; )
536 {
537 if (replacement > j)
538 replacement=j;
539 *q++=(unsigned char) replacement;
540 j-=replacement;
541 }
542 if (replacement == 255)
543 *q++='\0';
544 }
545 for (pixels-=i; i != 0; )
546 {
547 for (i-=delta; delta != 0; delta--)
548 *q++=(*pixels++);
549 if (i == 0)
550 break;
551 delta=i;
552 if (i >= 8)
553 delta=8;
554 *q++=(unsigned char) ((delta-1) << 5);
555 }
556 }
557 return((size_t) (q-compress_pixels));
558}
559
560static size_t PCLPackbitsCompressImage(const size_t length,
561 const unsigned char *pixels,unsigned char *compress_pixels)
562{
563 int
564 count;
565
cristybb503372010-05-27 20:51:26 +0000566 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000567 x;
568
569 register unsigned char
570 *q;
571
cristyaff6d802011-04-26 01:46:31 +0000572 ssize_t
573 j;
574
cristy3ed852e2009-09-05 21:47:34 +0000575 unsigned char
576 packbits[128];
577
578 /*
579 Compress pixels with Packbits encoding.
580 */
581 q=compress_pixels;
cristybb503372010-05-27 20:51:26 +0000582 for (x=(ssize_t) length; x != 0; )
cristy3ed852e2009-09-05 21:47:34 +0000583 {
584 switch (x)
585 {
586 case 1:
587 {
588 x--;
589 *q++=0;
590 *q++=(*pixels);
591 break;
592 }
593 case 2:
594 {
595 x-=2;
596 *q++=1;
597 *q++=(*pixels);
598 *q++=pixels[1];
599 break;
600 }
601 case 3:
602 {
603 x-=3;
604 if ((*pixels == *(pixels+1)) && (*(pixels+1) == *(pixels+2)))
605 {
606 *q++=(unsigned char) ((256-3)+1);
607 *q++=(*pixels);
608 break;
609 }
610 *q++=2;
611 *q++=(*pixels);
612 *q++=pixels[1];
613 *q++=pixels[2];
614 break;
615 }
616 default:
617 {
618 if ((*pixels == *(pixels+1)) && (*(pixels+1) == *(pixels+2)))
619 {
620 /*
621 Packed run.
622 */
623 count=3;
cristybb503372010-05-27 20:51:26 +0000624 while (((ssize_t) count < x) && (*pixels == *(pixels+count)))
cristy3ed852e2009-09-05 21:47:34 +0000625 {
626 count++;
627 if (count >= 127)
628 break;
629 }
630 x-=count;
631 *q++=(unsigned char) ((256-count)+1);
632 *q++=(*pixels);
633 pixels+=count;
634 break;
635 }
636 /*
637 Literal run.
638 */
639 count=0;
640 while ((*(pixels+count) != *(pixels+count+1)) ||
641 (*(pixels+count+1) != *(pixels+count+2)))
642 {
643 packbits[count+1]=pixels[count];
644 count++;
cristybb503372010-05-27 20:51:26 +0000645 if (((ssize_t) count >= (x-3)) || (count >= 127))
cristy3ed852e2009-09-05 21:47:34 +0000646 break;
647 }
648 x-=count;
649 *packbits=(unsigned char) (count-1);
cristybb503372010-05-27 20:51:26 +0000650 for (j=0; j <= (ssize_t) count; j++)
cristy3ed852e2009-09-05 21:47:34 +0000651 *q++=packbits[j];
652 pixels+=count;
653 break;
654 }
655 }
656 }
657 *q++=128; /* EOD marker */
658 return((size_t) (q-compress_pixels));
659}
660
cristy1e178e72011-08-28 19:44:34 +0000661static MagickBooleanType WritePCLImage(const ImageInfo *image_info,Image *image,
662 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000663{
664 char
665 buffer[MaxTextExtent];
666
cristy688f07b2009-09-27 15:19:13 +0000667 const char
668 *option;
669
cristy3ed852e2009-09-05 21:47:34 +0000670 MagickBooleanType
671 status;
672
673 MagickOffsetType
674 scene;
675
cristy4c08aed2011-07-01 19:47:50 +0000676 register const Quantum *p;
cristy3ed852e2009-09-05 21:47:34 +0000677
cristy4c08aed2011-07-01 19:47:50 +0000678 register ssize_t i, x;
679
680 register unsigned char *q;
681
682 size_t
683 density,
684 length,
cristyaff6d802011-04-26 01:46:31 +0000685 one,
cristy3ed852e2009-09-05 21:47:34 +0000686 packets;
687
cristyaff6d802011-04-26 01:46:31 +0000688 ssize_t
689 y;
690
cristy3ed852e2009-09-05 21:47:34 +0000691 unsigned char
692 bits_per_pixel,
693 *compress_pixels,
694 *pixels,
695 *previous_pixels;
696
cristy3ed852e2009-09-05 21:47:34 +0000697 /*
698 Open output image file.
699 */
700 assert(image_info != (const ImageInfo *) NULL);
701 assert(image_info->signature == MagickSignature);
702 assert(image != (Image *) NULL);
703 assert(image->signature == MagickSignature);
704 if (image->debug != MagickFalse)
705 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000706 assert(exception != (ExceptionInfo *) NULL);
707 assert(exception->signature == MagickSignature);
cristy1e178e72011-08-28 19:44:34 +0000708 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000709 if (status == MagickFalse)
710 return(status);
711 density=75;
712 if (image_info->density != (char *) NULL)
713 {
714 GeometryInfo
715 geometry;
716
717 (void) ParseGeometry(image_info->density,&geometry);
cristybb503372010-05-27 20:51:26 +0000718 density=(size_t) geometry.rho;
cristy3ed852e2009-09-05 21:47:34 +0000719 }
720 scene=0;
cristyf9cca6a2010-06-04 23:49:28 +0000721 one=1;
cristy3ed852e2009-09-05 21:47:34 +0000722 do
723 {
cristyd9ecd042012-06-17 18:26:12 +0000724 if ((IssRGBColorspace(image->colorspace) == MagickFalse) &&
725 (IsImageGray(image,exception) == MagickFalse))
cristy8d951092012-02-08 18:54:56 +0000726 (void) TransformImageColorspace(image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000727 /*
728 Initialize the printer.
729 */
730 (void) WriteBlobString(image,"\033E"); /* printer reset */
731 (void) WriteBlobString(image,"\033*r3F"); /* set presentation mode */
cristyb51dff52011-05-19 16:55:47 +0000732 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*r%.20gs%.20gT",
cristye8c25f92010-06-03 00:53:06 +0000733 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000734 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000735 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*t%.20gR",(double)
cristye8c25f92010-06-03 00:53:06 +0000736 density);
cristy3ed852e2009-09-05 21:47:34 +0000737 (void) WriteBlobString(image,buffer);
738 (void) WriteBlobString(image,"\033&l0E"); /* top margin 0 */
cristy1e178e72011-08-28 19:44:34 +0000739 if (IsImageMonochrome(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000740 {
741 /*
cristyfcbe33b2011-01-19 23:36:00 +0000742 Monochrome image: use default printer monochrome setup.
cristy3ed852e2009-09-05 21:47:34 +0000743 */
744 bits_per_pixel=1;
cristy3ed852e2009-09-05 21:47:34 +0000745 }
746 else
747 if (image->storage_class == DirectClass)
748 {
749 /*
750 DirectClass image.
751 */
752 bits_per_pixel=24;
753 (void) WriteBlobString(image,"\033*v6W"); /* set color mode */
754 (void) WriteBlobByte(image,0); /* RGB */
755 (void) WriteBlobByte(image,3); /* direct by pixel */
756 (void) WriteBlobByte(image,0); /* bits per index (ignored) */
757 (void) WriteBlobByte(image,8); /* bits per red component */
758 (void) WriteBlobByte(image,8); /* bits per green component */
759 (void) WriteBlobByte(image,8); /* bits per blue component */
760 }
761 else
762 {
763 /*
764 Colormapped image.
765 */
766 bits_per_pixel=8;
767 (void) WriteBlobString(image,"\033*v6W"); /* set color mode... */
768 (void) WriteBlobByte(image,0); /* RGB */
769 (void) WriteBlobByte(image,1); /* indexed by pixel */
770 (void) WriteBlobByte(image,bits_per_pixel); /* bits per index */
771 (void) WriteBlobByte(image,8); /* bits per red component */
772 (void) WriteBlobByte(image,8); /* bits per green component */
773 (void) WriteBlobByte(image,8); /* bits per blue component */
cristybb503372010-05-27 20:51:26 +0000774 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000775 {
cristyb51dff52011-05-19 16:55:47 +0000776 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000777 "\033*v%da%db%dc%.20gI",
778 ScaleQuantumToChar(image->colormap[i].red),
cristy3ed852e2009-09-05 21:47:34 +0000779 ScaleQuantumToChar(image->colormap[i].green),
cristye8c25f92010-06-03 00:53:06 +0000780 ScaleQuantumToChar(image->colormap[i].blue),(double) i);
cristy3ed852e2009-09-05 21:47:34 +0000781 (void) WriteBlobString(image,buffer);
782 }
cristyaff6d802011-04-26 01:46:31 +0000783 for (one=1; i < (ssize_t) (one << bits_per_pixel); i++)
cristy3ed852e2009-09-05 21:47:34 +0000784 {
cristyb51dff52011-05-19 16:55:47 +0000785 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*v%.20gI",
cristye8c25f92010-06-03 00:53:06 +0000786 (double) i);
cristy3ed852e2009-09-05 21:47:34 +0000787 (void) WriteBlobString(image,buffer);
788 }
789 }
cristy688f07b2009-09-27 15:19:13 +0000790 option=GetImageOption(image_info,"pcl:fit-to-page");
anthony7bcfe7f2012-03-30 14:01:22 +0000791 if (IfMagickTrue(IsStringTrue(option)))
cristy688f07b2009-09-27 15:19:13 +0000792 (void) WriteBlobString(image,"\033*r3A");
793 else
794 (void) WriteBlobString(image,"\033*r1A"); /* start raster graphics */
cristy3ed852e2009-09-05 21:47:34 +0000795 (void) WriteBlobString(image,"\033*b0Y"); /* set y offset */
796 length=(image->columns*bits_per_pixel+7)/8;
cristy91e52622010-11-03 01:05:41 +0000797 pixels=(unsigned char *) AcquireQuantumMemory(length+1,sizeof(*pixels));
cristy3ed852e2009-09-05 21:47:34 +0000798 if (pixels == (unsigned char *) NULL)
799 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
cristy91e52622010-11-03 01:05:41 +0000800 (void) ResetMagickMemory(pixels,0,(length+1)*sizeof(*pixels));
cristy3ed852e2009-09-05 21:47:34 +0000801 compress_pixels=(unsigned char *) NULL;
802 previous_pixels=(unsigned char *) NULL;
803 switch (image->compression)
804 {
805 case NoCompression:
806 {
cristyb51dff52011-05-19 16:55:47 +0000807 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*b0M");
cristy3ed852e2009-09-05 21:47:34 +0000808 (void) WriteBlobString(image,buffer);
809 break;
810 }
811 case RLECompression:
812 {
813 compress_pixels=(unsigned char *) AcquireQuantumMemory(length+256,
814 sizeof(*compress_pixels));
815 if (compress_pixels == (unsigned char *) NULL)
816 {
817 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
818 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
819 }
cristy84cb9f42010-11-02 16:06:30 +0000820 (void) ResetMagickMemory(compress_pixels,0,(length+256)*
821 sizeof(*compress_pixels));
cristyb51dff52011-05-19 16:55:47 +0000822 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*b2M");
cristy3ed852e2009-09-05 21:47:34 +0000823 (void) WriteBlobString(image,buffer);
824 break;
825 }
826 default:
827 {
cristy70865522011-03-30 14:36:48 +0000828 compress_pixels=(unsigned char *) AcquireQuantumMemory(3*length+256,
cristy91e52622010-11-03 01:05:41 +0000829 sizeof(*compress_pixels));
cristy3ed852e2009-09-05 21:47:34 +0000830 if (compress_pixels == (unsigned char *) NULL)
831 {
832 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
833 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
834 }
cristy70865522011-03-30 14:36:48 +0000835 (void) ResetMagickMemory(compress_pixels,0,(3*length+256)*
cristy84cb9f42010-11-02 16:06:30 +0000836 sizeof(*compress_pixels));
cristy91e52622010-11-03 01:05:41 +0000837 previous_pixels=(unsigned char *) AcquireQuantumMemory(length+1,
cristy3ed852e2009-09-05 21:47:34 +0000838 sizeof(*previous_pixels));
839 if (previous_pixels == (unsigned char *) NULL)
840 {
841 compress_pixels=(unsigned char *) RelinquishMagickMemory(
842 compress_pixels);
843 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
844 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
845 }
cristy91e52622010-11-03 01:05:41 +0000846 (void) ResetMagickMemory(previous_pixels,0,(length+1)*
cristy84cb9f42010-11-02 16:06:30 +0000847 sizeof(*previous_pixels));
cristyb51dff52011-05-19 16:55:47 +0000848 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*b3M");
cristy3ed852e2009-09-05 21:47:34 +0000849 (void) WriteBlobString(image,buffer);
850 break;
851 }
852 }
cristybb503372010-05-27 20:51:26 +0000853 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000854 {
cristy1e178e72011-08-28 19:44:34 +0000855 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000856 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000857 break;
cristy3ed852e2009-09-05 21:47:34 +0000858 q=pixels;
859 switch (bits_per_pixel)
860 {
861 case 1:
862 {
863 register unsigned char
864 bit,
865 byte;
866
867 /*
868 Monochrome image.
869 */
870 bit=0;
871 byte=0;
cristybb503372010-05-27 20:51:26 +0000872 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000873 {
874 byte<<=1;
cristy4c08aed2011-07-01 19:47:50 +0000875 if (GetPixelIntensity(image,p) < ((MagickRealType) QuantumRange/2.0))
cristy3ed852e2009-09-05 21:47:34 +0000876 byte|=0x01;
877 bit++;
878 if (bit == 8)
879 {
880 *q++=byte;
881 bit=0;
882 byte=0;
883 }
cristyed231572011-07-14 02:18:59 +0000884 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000885 }
886 if (bit != 0)
887 *q++=byte << (8-bit);
888 break;
889 }
890 case 8:
891 {
892 /*
893 Colormapped image.
894 */
cristybb503372010-05-27 20:51:26 +0000895 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +0000896 {
897 *q++=(unsigned char) GetPixelIndex(image,p);
cristyed231572011-07-14 02:18:59 +0000898 p+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000899 }
cristy3ed852e2009-09-05 21:47:34 +0000900 break;
901 }
902 case 24:
903 case 32:
904 {
905 /*
906 Truecolor image.
907 */
cristybb503372010-05-27 20:51:26 +0000908 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000909 {
cristy4c08aed2011-07-01 19:47:50 +0000910 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
911 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
912 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
cristyed231572011-07-14 02:18:59 +0000913 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000914 }
915 break;
916 }
917 }
918 switch (image->compression)
919 {
920 case NoCompression:
921 {
cristyb51dff52011-05-19 16:55:47 +0000922 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*b%.20gW",
cristye8c25f92010-06-03 00:53:06 +0000923 (double) length);
cristy3ed852e2009-09-05 21:47:34 +0000924 (void) WriteBlobString(image,buffer);
925 (void) WriteBlob(image,length,pixels);
926 break;
927 }
928 case RLECompression:
929 {
cristyaff6d802011-04-26 01:46:31 +0000930 packets=PCLPackbitsCompressImage(length,pixels,compress_pixels);
cristyb51dff52011-05-19 16:55:47 +0000931 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*b%.20gW",
cristye8c25f92010-06-03 00:53:06 +0000932 (double) packets);
cristy3ed852e2009-09-05 21:47:34 +0000933 (void) WriteBlobString(image,buffer);
934 (void) WriteBlob(image,packets,compress_pixels);
935 break;
936 }
937 default:
938 {
939 if (y == 0)
cristybb503372010-05-27 20:51:26 +0000940 for (i=0; i < (ssize_t) length; i++)
cristy3ed852e2009-09-05 21:47:34 +0000941 previous_pixels[i]=(~pixels[i]);
942 packets=PCLDeltaCompressImage(length,previous_pixels,pixels,
943 compress_pixels);
cristyb51dff52011-05-19 16:55:47 +0000944 (void) FormatLocaleString(buffer,MaxTextExtent,"\033*b%.20gW",
cristye8c25f92010-06-03 00:53:06 +0000945 (double) packets);
cristy3ed852e2009-09-05 21:47:34 +0000946 (void) WriteBlobString(image,buffer);
947 (void) WriteBlob(image,packets,compress_pixels);
948 (void) CopyMagickMemory(previous_pixels,pixels,length*
949 sizeof(*pixels));
950 break;
951 }
952 }
953 }
cristy8bc68ee2009-09-24 18:39:29 +0000954 (void) WriteBlobString(image,"\033*rB"); /* end graphics */
cristy3ed852e2009-09-05 21:47:34 +0000955 switch (image->compression)
956 {
957 case NoCompression:
958 break;
959 case RLECompression:
960 {
961 compress_pixels=(unsigned char *) RelinquishMagickMemory(
962 compress_pixels);
963 break;
964 }
965 default:
966 {
967 previous_pixels=(unsigned char *) RelinquishMagickMemory(
968 previous_pixels);
969 compress_pixels=(unsigned char *) RelinquishMagickMemory(
970 compress_pixels);
971 break;
972 }
973 }
974 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
975 if (GetNextImageInList(image) == (Image *) NULL)
976 break;
977 image=SyncNextImageInList(image);
978 status=SetImageProgress(image,SaveImagesTag,scene++,
979 GetImageListLength(image));
980 if (status == MagickFalse)
981 break;
982 } while (image_info->adjoin != MagickFalse);
983 (void) WriteBlobString(image,"\033E");
984 (void) CloseBlob(image);
985 return(MagickTrue);
986}