blob: bc9dcda060778d181396355a1b932827d59f1d9d [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% PPPP SSSSS 22222 %
7% P P SS 22 %
8% PPPP SSS 222 %
9% P SS 22 %
10% P SSSSS 22222 %
11% %
12% %
13% Write Postscript Level II Format %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy45ef08f2012-12-07 13:13:34 +000020% Copyright 1999-2013 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/compress.h"
50#include "MagickCore/constitute.h"
51#include "MagickCore/draw.h"
52#include "MagickCore/exception.h"
53#include "MagickCore/exception-private.h"
54#include "MagickCore/geometry.h"
55#include "MagickCore/image.h"
56#include "MagickCore/image-private.h"
57#include "MagickCore/list.h"
58#include "MagickCore/magick.h"
59#include "MagickCore/memory_.h"
60#include "MagickCore/monitor.h"
61#include "MagickCore/monitor-private.h"
62#include "MagickCore/monitor-private.h"
63#include "MagickCore/option.h"
64#include "MagickCore/pixel-accessor.h"
65#include "MagickCore/property.h"
66#include "MagickCore/quantum-private.h"
67#include "MagickCore/resource_.h"
68#include "MagickCore/static.h"
69#include "MagickCore/string_.h"
70#include "MagickCore/module.h"
71#include "MagickCore/utility.h"
cristy80975862009-09-25 14:34:31 +000072
73/*
74 Define declarations.
75*/
cristy3ed852e2009-09-05 21:47:34 +000076#if defined(MAGICKCORE_TIFF_DELEGATE)
77#define CCITTParam "-1"
78#else
79#define CCITTParam "0"
80#endif
81
82/*
83 Forward declarations.
84*/
85static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000086 WritePS2Image(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000087
88/*
89%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
90% %
91% %
92% %
93% R e g i s t e r P S 2 I m a g e %
94% %
95% %
96% %
97%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
98%
99% RegisterPS2Image() adds properties for the PS2 image format to
100% the list of supported formats. The properties include the image format
101% tag, a method to read and/or write the format, whether the format
102% supports the saving of more than one frame to the same file or blob,
103% whether the format supports native in-memory I/O, and a brief
104% description of the format.
105%
106% The format of the RegisterPS2Image method is:
107%
cristybb503372010-05-27 20:51:26 +0000108% size_t RegisterPS2Image(void)
cristy3ed852e2009-09-05 21:47:34 +0000109%
110*/
cristybb503372010-05-27 20:51:26 +0000111ModuleExport size_t RegisterPS2Image(void)
cristy3ed852e2009-09-05 21:47:34 +0000112{
113 MagickInfo
114 *entry;
115
116 entry=SetMagickInfo("EPS2");
117 entry->encoder=(EncodeImageHandler *) WritePS2Image;
118 entry->adjoin=MagickFalse;
119 entry->seekable_stream=MagickTrue;
120 entry->description=ConstantString("Level II Encapsulated PostScript");
121 entry->module=ConstantString("PS2");
122 (void) RegisterMagickInfo(entry);
123 entry=SetMagickInfo("PS2");
124 entry->encoder=(EncodeImageHandler *) WritePS2Image;
125 entry->seekable_stream=MagickTrue;
126 entry->description=ConstantString("Level II PostScript");
127 entry->module=ConstantString("PS2");
128 (void) RegisterMagickInfo(entry);
129 return(MagickImageCoderSignature);
130}
131
132/*
133%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
134% %
135% %
136% %
137% U n r e g i s t e r P S 2 I m a g e %
138% %
139% %
140% %
141%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
142%
143% UnregisterPS2Image() removes format registrations made by the
144% PS2 module from the list of supported formats.
145%
146% The format of the UnregisterPS2Image method is:
147%
148% UnregisterPS2Image(void)
149%
150*/
151ModuleExport void UnregisterPS2Image(void)
152{
153 (void) UnregisterMagickInfo("EPS2");
154 (void) UnregisterMagickInfo("PS2");
155}
156
157/*
158%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
159% %
160% %
161% %
162% W r i t e P S 2 I m a g e %
163% %
164% %
165% %
166%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
167%
168% WritePS2Image translates an image to encapsulated Postscript
169% Level II for printing. If the supplied geometry is null, the image is
170% centered on the Postscript page. Otherwise, the image is positioned as
171% specified by the geometry.
172%
173% The format of the WritePS2Image method is:
174%
cristy1e178e72011-08-28 19:44:34 +0000175% MagickBooleanType WritePS2Image(const ImageInfo *image_info,
176% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000177%
178% A description of each parameter follows:
179%
180% o image_info: the image info.
181%
182% o image: the image.
183%
cristy1e178e72011-08-28 19:44:34 +0000184% o exception: return any errors or warnings in this structure.
185%
cristy3ed852e2009-09-05 21:47:34 +0000186*/
cristy47b838c2009-09-19 16:09:30 +0000187
188static MagickBooleanType Huffman2DEncodeImage(const ImageInfo *image_info,
cristy018f07f2011-09-04 21:15:19 +0000189 Image *image,Image *inject_image,ExceptionInfo *exception)
cristy47b838c2009-09-19 16:09:30 +0000190{
cristy47b838c2009-09-19 16:09:30 +0000191 Image
cristy80975862009-09-25 14:34:31 +0000192 *group4_image;
cristy47b838c2009-09-19 16:09:30 +0000193
194 ImageInfo
195 *write_info;
196
cristy47b838c2009-09-19 16:09:30 +0000197 MagickBooleanType
198 status;
199
cristy80975862009-09-25 14:34:31 +0000200 size_t
201 length;
cristy47b838c2009-09-19 16:09:30 +0000202
203 unsigned char
cristy80975862009-09-25 14:34:31 +0000204 *group4;
cristy47b838c2009-09-19 16:09:30 +0000205
cristy42751fe2009-10-05 00:15:50 +0000206 status=MagickTrue;
cristy47b838c2009-09-19 16:09:30 +0000207 write_info=CloneImageInfo(image_info);
cristy80975862009-09-25 14:34:31 +0000208 (void) CopyMagickString(write_info->filename,"GROUP4:",MaxTextExtent);
209 (void) CopyMagickString(write_info->magick,"GROUP4",MaxTextExtent);
cristy018f07f2011-09-04 21:15:19 +0000210 group4_image=CloneImage(inject_image,0,0,MagickTrue,exception);
cristy80975862009-09-25 14:34:31 +0000211 if (group4_image == (Image *) NULL)
212 return(MagickFalse);
213 group4=(unsigned char *) ImageToBlob(write_info,group4_image,&length,
cristy018f07f2011-09-04 21:15:19 +0000214 exception);
cristy80975862009-09-25 14:34:31 +0000215 group4_image=DestroyImage(group4_image);
216 if (group4 == (unsigned char *) NULL)
217 return(MagickFalse);
cristy47b838c2009-09-19 16:09:30 +0000218 write_info=DestroyImageInfo(write_info);
cristy80975862009-09-25 14:34:31 +0000219 if (WriteBlob(image,length,group4) != (ssize_t) length)
220 status=MagickFalse;
221 group4=(unsigned char *) RelinquishMagickMemory(group4);
222 return(status);
cristy47b838c2009-09-19 16:09:30 +0000223}
224
cristy1e178e72011-08-28 19:44:34 +0000225static MagickBooleanType WritePS2Image(const ImageInfo *image_info,Image *image,
226 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000227{
228 static const char
229 *PostscriptProlog[]=
230 {
231 "%%%%BeginProlog",
232 "%%",
233 "%% Display a color image. The image is displayed in color on",
234 "%% Postscript viewers or printers that support color, otherwise",
235 "%% it is displayed as grayscale.",
236 "%%",
237 "/DirectClassImage",
238 "{",
239 " %%",
240 " %% Display a DirectClass image.",
241 " %%",
242 " colorspace 0 eq",
243 " {",
244 " /DeviceRGB setcolorspace",
245 " <<",
246 " /ImageType 1",
247 " /Width columns",
248 " /Height rows",
249 " /BitsPerComponent 8",
250 " /Decode [0 1 0 1 0 1]",
251 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
252 " compression 0 gt",
cristy80975862009-09-25 14:34:31 +0000253 " { /DataSource pixel_stream %s }",
254 " { /DataSource pixel_stream %s } ifelse",
cristy3ed852e2009-09-05 21:47:34 +0000255 " >> image",
256 " }",
257 " {",
258 " /DeviceCMYK setcolorspace",
259 " <<",
260 " /ImageType 1",
261 " /Width columns",
262 " /Height rows",
263 " /BitsPerComponent 8",
264 " /Decode [1 0 1 0 1 0 1 0]",
265 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
266 " compression 0 gt",
cristy80975862009-09-25 14:34:31 +0000267 " { /DataSource pixel_stream %s }",
268 " { /DataSource pixel_stream %s } ifelse",
cristy3ed852e2009-09-05 21:47:34 +0000269 " >> image",
270 " } ifelse",
271 "} bind def",
272 "",
273 "/PseudoClassImage",
274 "{",
275 " %%",
276 " %% Display a PseudoClass image.",
277 " %%",
278 " %% Parameters:",
279 " %% colors: number of colors in the colormap.",
280 " %%",
281 " currentfile buffer readline pop",
282 " token pop /colors exch def pop",
283 " colors 0 eq",
284 " {",
285 " %%",
286 " %% Image is grayscale.",
287 " %%",
288 " currentfile buffer readline pop",
289 " token pop /bits exch def pop",
290 " /DeviceGray setcolorspace",
291 " <<",
292 " /ImageType 1",
293 " /Width columns",
294 " /Height rows",
295 " /BitsPerComponent bits",
296 " /Decode [0 1]",
297 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
298 " compression 0 gt",
cristy80975862009-09-25 14:34:31 +0000299 " { /DataSource pixel_stream %s }",
cristy3ed852e2009-09-05 21:47:34 +0000300 " {",
cristy80975862009-09-25 14:34:31 +0000301 " /DataSource pixel_stream %s",
cristy3ed852e2009-09-05 21:47:34 +0000302 " <<",
303 " /K "CCITTParam,
304 " /Columns columns",
305 " /Rows rows",
306 " >> /CCITTFaxDecode filter",
307 " } ifelse",
308 " >> image",
309 " }",
310 " {",
311 " %%",
312 " %% Parameters:",
313 " %% colormap: red, green, blue color packets.",
314 " %%",
315 " /colormap colors 3 mul string def",
316 " currentfile colormap readhexstring pop pop",
317 " currentfile buffer readline pop",
318 " [ /Indexed /DeviceRGB colors 1 sub colormap ] setcolorspace",
319 " <<",
320 " /ImageType 1",
321 " /Width columns",
322 " /Height rows",
323 " /BitsPerComponent 8",
324 " /Decode [0 255]",
325 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
326 " compression 0 gt",
cristy80975862009-09-25 14:34:31 +0000327 " { /DataSource pixel_stream %s }",
328 " { /DataSource pixel_stream %s } ifelse",
cristy3ed852e2009-09-05 21:47:34 +0000329 " >> image",
330 " } ifelse",
331 "} bind def",
332 "",
333 "/DisplayImage",
334 "{",
335 " %%",
336 " %% Display a DirectClass or PseudoClass image.",
337 " %%",
338 " %% Parameters:",
339 " %% x & y translation.",
340 " %% x & y scale.",
341 " %% label pointsize.",
342 " %% image label.",
343 " %% image columns & rows.",
344 " %% class: 0-DirectClass or 1-PseudoClass.",
345 " %% colorspace: 0-RGB or 1-CMYK.",
346 " %% compression: 0-RLECompression or 1-NoCompression.",
347 " %% hex color packets.",
348 " %%",
349 " gsave",
350 " /buffer 512 string def",
351 " /pixel_stream currentfile def",
352 "",
353 " currentfile buffer readline pop",
354 " token pop /x exch def",
355 " token pop /y exch def pop",
356 " x y translate",
357 " currentfile buffer readline pop",
358 " token pop /x exch def",
359 " token pop /y exch def pop",
360 " currentfile buffer readline pop",
361 " token pop /pointsize exch def pop",
362 " /Helvetica findfont pointsize scalefont setfont",
363 (char *) NULL
364 },
365 *PostscriptEpilog[]=
366 {
367 " x y scale",
368 " currentfile buffer readline pop",
369 " token pop /columns exch def",
370 " token pop /rows exch def pop",
371 " currentfile buffer readline pop",
372 " token pop /class exch def pop",
373 " currentfile buffer readline pop",
374 " token pop /colorspace exch def pop",
375 " currentfile buffer readline pop",
376 " token pop /compression exch def pop",
377 " class 0 gt { PseudoClassImage } { DirectClassImage } ifelse",
cristy8b4ff222012-03-02 13:01:39 +0000378 " grestore",
cristy3ed852e2009-09-05 21:47:34 +0000379 (char *) NULL
380 };
381
382 char
383 buffer[MaxTextExtent],
384 date[MaxTextExtent],
385 page_geometry[MaxTextExtent],
386 **labels;
387
388 CompressionType
389 compression;
390
391 const char
392 **q,
393 *value;
394
395 double
396 pointsize;
397
398 GeometryInfo
399 geometry_info;
400
cristy3ed852e2009-09-05 21:47:34 +0000401 MagickOffsetType
402 scene,
403 start,
404 stop;
405
406 MagickBooleanType
407 progress,
408 status;
409
410 MagickOffsetType
411 offset;
412
413 MagickSizeType
414 number_pixels;
415
416 MagickStatusType
417 flags;
418
419 PointInfo
420 delta,
421 resolution,
422 scale;
423
424 RectangleInfo
425 geometry,
426 media_info,
427 page_info;
428
cristy4c08aed2011-07-01 19:47:50 +0000429 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000430 *p;
431
cristybb503372010-05-27 20:51:26 +0000432 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000433 x;
434
cristybb503372010-05-27 20:51:26 +0000435 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000436 i;
437
438 SegmentInfo
439 bounds;
440
441 size_t
cristy802d3642011-04-27 02:02:41 +0000442 length,
443 page,
444 text_size;
445
446 ssize_t
447 j,
448 y;
cristy3ed852e2009-09-05 21:47:34 +0000449
450 time_t
451 timer;
452
453 unsigned char
454 *pixels;
455
cristy3ed852e2009-09-05 21:47:34 +0000456 /*
457 Open output image file.
458 */
459 assert(image_info != (const ImageInfo *) NULL);
460 assert(image_info->signature == MagickSignature);
461 assert(image != (Image *) NULL);
462 assert(image->signature == MagickSignature);
463 if (image->debug != MagickFalse)
464 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000465 assert(exception != (ExceptionInfo *) NULL);
466 assert(exception->signature == MagickSignature);
cristy1e178e72011-08-28 19:44:34 +0000467 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000468 if (status == MagickFalse)
469 return(status);
470 compression=image->compression;
471 if (image_info->compression != UndefinedCompression)
472 compression=image_info->compression;
473 switch (compression)
474 {
475#if !defined(MAGICKCORE_JPEG_DELEGATE)
476 case JPEGCompression:
477 {
478 compression=RLECompression;
cristy1e178e72011-08-28 19:44:34 +0000479 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +0000480 MissingDelegateError,"DelegateLibrarySupportNotBuiltIn","`%s' (JPEG)",
481 image->filename);
482 break;
483 }
484#endif
485 default:
486 break;
487 }
488 (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
489 page=1;
490 scene=0;
491 do
492 {
493 /*
494 Scale relative to dots-per-inch.
495 */
496 delta.x=DefaultResolution;
497 delta.y=DefaultResolution;
cristy2a11bef2011-10-28 18:33:11 +0000498 resolution.x=image->resolution.x;
499 resolution.y=image->resolution.y;
cristy3ed852e2009-09-05 21:47:34 +0000500 if ((resolution.x == 0.0) || (resolution.y == 0.0))
501 {
502 flags=ParseGeometry(PSDensityGeometry,&geometry_info);
503 resolution.x=geometry_info.rho;
504 resolution.y=geometry_info.sigma;
505 if ((flags & SigmaValue) == 0)
506 resolution.y=resolution.x;
507 }
508 if (image_info->density != (char *) NULL)
509 {
510 flags=ParseGeometry(image_info->density,&geometry_info);
511 resolution.x=geometry_info.rho;
512 resolution.y=geometry_info.sigma;
513 if ((flags & SigmaValue) == 0)
514 resolution.y=resolution.x;
515 }
516 if (image->units == PixelsPerCentimeterResolution)
517 {
cristybb503372010-05-27 20:51:26 +0000518 resolution.x=(size_t) (100.0*2.54*resolution.x+0.5)/100.0;
519 resolution.y=(size_t) (100.0*2.54*resolution.y+0.5)/100.0;
cristy3ed852e2009-09-05 21:47:34 +0000520 }
521 SetGeometry(image,&geometry);
cristyb51dff52011-05-19 16:55:47 +0000522 (void) FormatLocaleString(page_geometry,MaxTextExtent,"%.20gx%.20g",
cristye8c25f92010-06-03 00:53:06 +0000523 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000524 if (image_info->page != (char *) NULL)
525 (void) CopyMagickString(page_geometry,image_info->page,MaxTextExtent);
526 else
527 if ((image->page.width != 0) && (image->page.height != 0))
cristyb51dff52011-05-19 16:55:47 +0000528 (void) FormatLocaleString(page_geometry,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000529 "%.20gx%.20g%+.20g%+.20g",(double) image->page.width,(double)
530 image->page.height,(double) image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +0000531 else
532 if ((image->gravity != UndefinedGravity) &&
533 (LocaleCompare(image_info->magick,"PS") == 0))
534 (void) CopyMagickString(page_geometry,PSPageGeometry,MaxTextExtent);
535 (void) ConcatenateMagickString(page_geometry,">",MaxTextExtent);
536 (void) ParseMetaGeometry(page_geometry,&geometry.x,&geometry.y,
537 &geometry.width,&geometry.height);
538 scale.x=(double) (geometry.width*delta.x)/resolution.x;
cristybb503372010-05-27 20:51:26 +0000539 geometry.width=(size_t) floor(scale.x+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000540 scale.y=(double) (geometry.height*delta.y)/resolution.y;
cristybb503372010-05-27 20:51:26 +0000541 geometry.height=(size_t) floor(scale.y+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000542 (void) ParseAbsoluteGeometry(page_geometry,&media_info);
cristy1e178e72011-08-28 19:44:34 +0000543 (void) ParseGravityGeometry(image,page_geometry,&page_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000544 if (image->gravity != UndefinedGravity)
545 {
546 geometry.x=(-page_info.x);
cristybb503372010-05-27 20:51:26 +0000547 geometry.y=(ssize_t) (media_info.height+page_info.y-image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000548 }
549 pointsize=12.0;
550 if (image_info->pointsize != 0.0)
551 pointsize=image_info->pointsize;
552 text_size=0;
cristyd15e6592011-10-15 00:13:06 +0000553 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +0000554 if (value != (const char *) NULL)
cristybb503372010-05-27 20:51:26 +0000555 text_size=(size_t) (MultilineCensus(value)*pointsize+12);
cristy3ed852e2009-09-05 21:47:34 +0000556 if (page == 1)
557 {
558 /*
559 Output Postscript header.
560 */
561 if (LocaleCompare(image_info->magick,"PS2") == 0)
562 (void) CopyMagickString(buffer,"%!PS-Adobe-3.0\n",MaxTextExtent);
563 else
564 (void) CopyMagickString(buffer,"%!PS-Adobe-3.0 EPSF-3.0\n",
565 MaxTextExtent);
566 (void) WriteBlobString(image,buffer);
567 (void) WriteBlobString(image,"%%Creator: (ImageMagick)\n");
cristyb51dff52011-05-19 16:55:47 +0000568 (void) FormatLocaleString(buffer,MaxTextExtent,"%%%%Title: (%s)\n",
cristy3ed852e2009-09-05 21:47:34 +0000569 image->filename);
570 (void) WriteBlobString(image,buffer);
571 timer=time((time_t *) NULL);
572 (void) FormatMagickTime(timer,MaxTextExtent,date);
cristyb51dff52011-05-19 16:55:47 +0000573 (void) FormatLocaleString(buffer,MaxTextExtent,
cristy3ed852e2009-09-05 21:47:34 +0000574 "%%%%CreationDate: (%s)\n",date);
575 (void) WriteBlobString(image,buffer);
576 bounds.x1=(double) geometry.x;
577 bounds.y1=(double) geometry.y;
578 bounds.x2=(double) geometry.x+geometry.width;
579 bounds.y2=(double) geometry.y+geometry.height+text_size;
580 if ((image_info->adjoin != MagickFalse) &&
581 (GetNextImageInList(image) != (Image *) NULL))
582 (void) CopyMagickString(buffer,"%%BoundingBox: (atend)\n",
583 MaxTextExtent);
584 else
585 {
cristyb51dff52011-05-19 16:55:47 +0000586 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000587 "%%%%BoundingBox: %.20g %.20g %.20g %.20g\n",ceil(bounds.x1-0.5),
cristy8071c472012-09-24 12:41:06 +0000588 ceil(bounds.y1-0.5),floor(bounds.x2+0.5),floor(bounds.y2+0.5));
cristy3ed852e2009-09-05 21:47:34 +0000589 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000590 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +0000591 "%%%%HiResBoundingBox: %g %g %g %g\n",bounds.x1,
cristy8cd5b312010-01-07 01:10:24 +0000592 bounds.y1,bounds.x2,bounds.y2);
cristy3ed852e2009-09-05 21:47:34 +0000593 }
594 (void) WriteBlobString(image,buffer);
cristyd15e6592011-10-15 00:13:06 +0000595 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +0000596 if (value != (const char *) NULL)
597 (void) WriteBlobString(image,
598 "%%DocumentNeededResources: font Helvetica\n");
599 (void) WriteBlobString(image,"%%LanguageLevel: 2\n");
600 if (LocaleCompare(image_info->magick,"PS2") != 0)
601 (void) WriteBlobString(image,"%%Pages: 1\n");
602 else
603 {
604 (void) WriteBlobString(image,"%%Orientation: Portrait\n");
605 (void) WriteBlobString(image,"%%PageOrder: Ascend\n");
606 if (image_info->adjoin == MagickFalse)
607 (void) CopyMagickString(buffer,"%%Pages: 1\n",MaxTextExtent);
608 else
cristyb51dff52011-05-19 16:55:47 +0000609 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000610 "%%%%Pages: %.20g\n",(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +0000611 (void) WriteBlobString(image,buffer);
612 }
613 (void) WriteBlobString(image,"%%EndComments\n");
614 (void) WriteBlobString(image,"\n%%BeginDefaults\n");
615 (void) WriteBlobString(image,"%%EndDefaults\n\n");
616 /*
617 Output Postscript commands.
618 */
619 for (q=PostscriptProlog; *q; q++)
620 {
621 switch (compression)
622 {
623 case NoCompression:
624 {
cristyb51dff52011-05-19 16:55:47 +0000625 (void) FormatLocaleString(buffer,MaxTextExtent,*q,
cristy80975862009-09-25 14:34:31 +0000626 "/ASCII85Decode filter");
cristy3ed852e2009-09-05 21:47:34 +0000627 break;
628 }
629 case JPEGCompression:
630 {
cristyb51dff52011-05-19 16:55:47 +0000631 (void) FormatLocaleString(buffer,MaxTextExtent,*q,
cristy80975862009-09-25 14:34:31 +0000632 "/DCTDecode filter");
cristy3ed852e2009-09-05 21:47:34 +0000633 break;
634 }
635 case LZWCompression:
636 {
cristyb51dff52011-05-19 16:55:47 +0000637 (void) FormatLocaleString(buffer,MaxTextExtent,*q,
cristy80975862009-09-25 14:34:31 +0000638 "/LZWDecode filter");
cristy3ed852e2009-09-05 21:47:34 +0000639 break;
640 }
641 case FaxCompression:
642 case Group4Compression:
643 {
cristyb51dff52011-05-19 16:55:47 +0000644 (void) FormatLocaleString(buffer,MaxTextExtent,*q," ");
cristy3ed852e2009-09-05 21:47:34 +0000645 break;
646 }
647 default:
648 {
cristyb51dff52011-05-19 16:55:47 +0000649 (void) FormatLocaleString(buffer,MaxTextExtent,*q,
cristy80975862009-09-25 14:34:31 +0000650 "/RunLengthDecode filter");
cristy3ed852e2009-09-05 21:47:34 +0000651 break;
652 }
653 }
654 (void) WriteBlobString(image,buffer);
655 (void) WriteBlobByte(image,'\n');
656 }
cristyd15e6592011-10-15 00:13:06 +0000657 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +0000658 if (value != (const char *) NULL)
cristybb503372010-05-27 20:51:26 +0000659 for (j=(ssize_t) MultilineCensus(value)-1; j >= 0; j--)
cristy3ed852e2009-09-05 21:47:34 +0000660 {
661 (void) WriteBlobString(image," /label 512 string def\n");
662 (void) WriteBlobString(image," currentfile label readline pop\n");
cristyb51dff52011-05-19 16:55:47 +0000663 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +0000664 " 0 y %g add moveto label show pop\n",j*pointsize+12);
cristy3ed852e2009-09-05 21:47:34 +0000665 (void) WriteBlobString(image,buffer);
666 }
667 for (q=PostscriptEpilog; *q; q++)
668 {
cristyb51dff52011-05-19 16:55:47 +0000669 (void) FormatLocaleString(buffer,MaxTextExtent,"%s\n",*q);
cristy3ed852e2009-09-05 21:47:34 +0000670 (void) WriteBlobString(image,buffer);
671 }
672 if (LocaleCompare(image_info->magick,"PS2") == 0)
673 (void) WriteBlobString(image," showpage\n");
674 (void) WriteBlobString(image,"} bind def\n");
675 (void) WriteBlobString(image,"%%EndProlog\n");
676 }
cristyb51dff52011-05-19 16:55:47 +0000677 (void) FormatLocaleString(buffer,MaxTextExtent,"%%%%Page: 1 %.20g\n",
cristye8c25f92010-06-03 00:53:06 +0000678 (double) page++);
cristy3ed852e2009-09-05 21:47:34 +0000679 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000680 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000681 "%%%%PageBoundingBox: %.20g %.20g %.20g %.20g\n",(double) geometry.x,
682 (double) geometry.y,geometry.x+(double) geometry.width,geometry.y+(double)
cristy3ed852e2009-09-05 21:47:34 +0000683 (geometry.height+text_size));
684 (void) WriteBlobString(image,buffer);
685 if ((double) geometry.x < bounds.x1)
686 bounds.x1=(double) geometry.x;
687 if ((double) geometry.y < bounds.y1)
688 bounds.y1=(double) geometry.y;
689 if ((double) (geometry.x+geometry.width-1) > bounds.x2)
690 bounds.x2=(double) geometry.x+geometry.width-1;
691 if ((double) (geometry.y+(geometry.height+text_size)-1) > bounds.y2)
692 bounds.y2=(double) geometry.y+(geometry.height+text_size)-1;
cristyd15e6592011-10-15 00:13:06 +0000693 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +0000694 if (value != (const char *) NULL)
695 (void) WriteBlobString(image,"%%PageResources: font Times-Roman\n");
696 if (LocaleCompare(image_info->magick,"PS2") != 0)
697 (void) WriteBlobString(image,"userdict begin\n");
698 start=TellBlob(image);
cristyb51dff52011-05-19 16:55:47 +0000699 (void) FormatLocaleString(buffer,MaxTextExtent,
cristy3ed852e2009-09-05 21:47:34 +0000700 "%%%%BeginData:%13ld %s Bytes\n",0L,
701 compression == NoCompression ? "ASCII" : "Binary");
702 (void) WriteBlobString(image,buffer);
703 stop=TellBlob(image);
704 (void) WriteBlobString(image,"DisplayImage\n");
705 /*
706 Output image data.
707 */
cristyb51dff52011-05-19 16:55:47 +0000708 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g %.20g\n%g %g\n%g\n",
cristye8c25f92010-06-03 00:53:06 +0000709 (double) geometry.x,(double) geometry.y,scale.x,scale.y,pointsize);
cristy3ed852e2009-09-05 21:47:34 +0000710 (void) WriteBlobString(image,buffer);
711 labels=(char **) NULL;
cristyd15e6592011-10-15 00:13:06 +0000712 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +0000713 if (value != (const char *) NULL)
714 labels=StringToList(value);
715 if (labels != (char **) NULL)
716 {
717 for (i=0; labels[i] != (char *) NULL; i++)
718 {
cristyb51dff52011-05-19 16:55:47 +0000719 (void) FormatLocaleString(buffer,MaxTextExtent,"%s \n",
cristy3ed852e2009-09-05 21:47:34 +0000720 labels[i]);
721 (void) WriteBlobString(image,buffer);
722 labels[i]=DestroyString(labels[i]);
723 }
724 labels=(char **) RelinquishMagickMemory(labels);
725 }
726 number_pixels=(MagickSizeType) image->columns*image->rows;
727 if (number_pixels != (MagickSizeType) ((size_t) number_pixels))
728 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
729 if ((compression == FaxCompression) || (compression == Group4Compression) ||
730 ((image_info->type != TrueColorType) &&
cristy1e178e72011-08-28 19:44:34 +0000731 (IsImageGray(image,exception) != MagickFalse)))
cristy3ed852e2009-09-05 21:47:34 +0000732 {
cristyb51dff52011-05-19 16:55:47 +0000733 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g %.20g\n1\n%d\n",
cristye8c25f92010-06-03 00:53:06 +0000734 (double) image->columns,(double) image->rows,(int)
cristy3ed852e2009-09-05 21:47:34 +0000735 (image->colorspace == CMYKColorspace));
736 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000737 (void) FormatLocaleString(buffer,MaxTextExtent,"%d\n",
cristy3ed852e2009-09-05 21:47:34 +0000738 (int) ((compression != FaxCompression) &&
739 (compression != Group4Compression)));
740 (void) WriteBlobString(image,buffer);
741 (void) WriteBlobString(image,"0\n");
cristyb51dff52011-05-19 16:55:47 +0000742 (void) FormatLocaleString(buffer,MaxTextExtent,"%d\n",
cristy3ed852e2009-09-05 21:47:34 +0000743 (compression == FaxCompression) ||
744 (compression == Group4Compression) ? 1 : 8);
745 (void) WriteBlobString(image,buffer);
746 switch (compression)
747 {
748 case FaxCompression:
749 case Group4Compression:
750 {
751 if (LocaleCompare(CCITTParam,"0") == 0)
752 {
cristy018f07f2011-09-04 21:15:19 +0000753 (void) HuffmanEncodeImage(image_info,image,image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000754 break;
755 }
cristy018f07f2011-09-04 21:15:19 +0000756 (void) Huffman2DEncodeImage(image_info,image,image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000757 break;
758 }
759 case JPEGCompression:
760 {
cristy1e178e72011-08-28 19:44:34 +0000761 status=InjectImageBlob(image_info,image,image,"jpeg",exception);
cristy3ed852e2009-09-05 21:47:34 +0000762 if (status == MagickFalse)
cristy1e178e72011-08-28 19:44:34 +0000763 {
764 (void) CloseBlob(image);
765 return(MagickFalse);
766 }
cristy3ed852e2009-09-05 21:47:34 +0000767 break;
768 }
769 case RLECompression:
770 default:
771 {
772 register unsigned char
773 *q;
774
775 /*
776 Allocate pixel array.
777 */
778 length=(size_t) number_pixels;
779 pixels=(unsigned char *) AcquireQuantumMemory(length,
780 sizeof(*pixels));
781 if (pixels == (unsigned char *) NULL)
782 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
783 /*
784 Dump Runlength encoded pixels.
785 */
786 q=pixels;
cristybb503372010-05-27 20:51:26 +0000787 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000788 {
cristy1e178e72011-08-28 19:44:34 +0000789 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000790 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000791 break;
cristybb503372010-05-27 20:51:26 +0000792 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000793 {
cristyd0323222013-04-07 16:13:21 +0000794 *q++=ScaleQuantumToChar(ClampToQuantum(GetPixelLuma(image,p)));
cristyed231572011-07-14 02:18:59 +0000795 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000796 }
cristy802d3642011-04-27 02:02:41 +0000797 progress=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
798 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000799 if (progress == MagickFalse)
800 break;
801 }
802 length=(size_t) (q-pixels);
803 if (compression == LZWCompression)
cristy018f07f2011-09-04 21:15:19 +0000804 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000805 else
cristy018f07f2011-09-04 21:15:19 +0000806 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000807 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
808 if (status == MagickFalse)
809 {
810 (void) CloseBlob(image);
811 return(MagickFalse);
812 }
813 break;
814 }
815 case NoCompression:
816 {
817 /*
818 Dump uncompressed PseudoColor packets.
819 */
820 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +0000821 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000822 {
cristy1e178e72011-08-28 19:44:34 +0000823 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000824 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000825 break;
cristybb503372010-05-27 20:51:26 +0000826 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000827 {
cristyd0323222013-04-07 16:13:21 +0000828 Ascii85Encode(image,ScaleQuantumToChar(ClampToQuantum(
829 GetPixelLuma(image,p))));
cristyed231572011-07-14 02:18:59 +0000830 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000831 }
cristye8c25f92010-06-03 00:53:06 +0000832 progress=SetImageProgress(image,SaveImageTag,(MagickOffsetType)
833 y,image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000834 if (progress == MagickFalse)
835 break;
836 }
837 Ascii85Flush(image);
838 break;
839 }
840 }
841 }
842 else
843 if ((image->storage_class == DirectClass) || (image->colors > 256) ||
cristy8a46d822012-08-28 23:32:39 +0000844 (compression == JPEGCompression) || (image->alpha_trait == BlendPixelTrait))
cristy3ed852e2009-09-05 21:47:34 +0000845 {
cristyb51dff52011-05-19 16:55:47 +0000846 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g %.20g\n0\n%d\n",
cristye8c25f92010-06-03 00:53:06 +0000847 (double) image->columns,(double) image->rows,(int)
cristy3ed852e2009-09-05 21:47:34 +0000848 (image->colorspace == CMYKColorspace));
849 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000850 (void) FormatLocaleString(buffer,MaxTextExtent,"%d\n",
cristy3ed852e2009-09-05 21:47:34 +0000851 (int) (compression == NoCompression));
852 (void) WriteBlobString(image,buffer);
853 switch (compression)
854 {
855 case JPEGCompression:
856 {
cristy1e178e72011-08-28 19:44:34 +0000857 status=InjectImageBlob(image_info,image,image,"jpeg",exception);
cristy3ed852e2009-09-05 21:47:34 +0000858 if (status == MagickFalse)
cristy1e178e72011-08-28 19:44:34 +0000859 {
860 (void) CloseBlob(image);
861 return(MagickFalse);
862 }
cristy3ed852e2009-09-05 21:47:34 +0000863 break;
864 }
865 case RLECompression:
866 default:
867 {
868 register unsigned char
869 *q;
870
871 /*
872 Allocate pixel array.
873 */
874 length=(size_t) number_pixels;
875 pixels=(unsigned char *) AcquireQuantumMemory(length,
876 4*sizeof(*pixels));
877 if (pixels == (unsigned char *) NULL)
878 ThrowWriterException(ResourceLimitError,
879 "MemoryAllocationFailed");
880 /*
881 Dump Packbit encoded pixels.
882 */
883 q=pixels;
cristybb503372010-05-27 20:51:26 +0000884 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000885 {
cristy1e178e72011-08-28 19:44:34 +0000886 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000887 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000888 break;
cristybb503372010-05-27 20:51:26 +0000889 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000890 {
cristy8a46d822012-08-28 23:32:39 +0000891 if ((image->alpha_trait == BlendPixelTrait) &&
cristy4c08aed2011-07-01 19:47:50 +0000892 (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha))
cristy3ed852e2009-09-05 21:47:34 +0000893 {
cristy6e963d82012-06-19 15:23:24 +0000894 *q++=ScaleQuantumToChar(QuantumRange);
895 *q++=ScaleQuantumToChar(QuantumRange);
896 *q++=ScaleQuantumToChar(QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000897 }
898 else
899 if (image->colorspace != CMYKColorspace)
900 {
cristy4c08aed2011-07-01 19:47:50 +0000901 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
902 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
903 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
cristy3ed852e2009-09-05 21:47:34 +0000904 }
905 else
906 {
cristy4c08aed2011-07-01 19:47:50 +0000907 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
908 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
909 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
910 *q++=ScaleQuantumToChar(GetPixelBlack(image,p));
cristy3ed852e2009-09-05 21:47:34 +0000911 }
cristyed231572011-07-14 02:18:59 +0000912 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000913 }
cristy802d3642011-04-27 02:02:41 +0000914 progress=SetImageProgress(image,SaveImageTag,(MagickOffsetType)
915 y,image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000916 if (progress == MagickFalse)
917 break;
918 }
919 length=(size_t) (q-pixels);
920 if (compression == LZWCompression)
cristy018f07f2011-09-04 21:15:19 +0000921 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000922 else
cristy018f07f2011-09-04 21:15:19 +0000923 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000924 if (status == MagickFalse)
925 {
926 (void) CloseBlob(image);
927 return(MagickFalse);
928 }
929 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
930 break;
931 }
932 case NoCompression:
933 {
934 /*
935 Dump uncompressed DirectColor packets.
936 */
937 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +0000938 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000939 {
cristy1e178e72011-08-28 19:44:34 +0000940 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000941 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000942 break;
cristybb503372010-05-27 20:51:26 +0000943 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000944 {
cristy8a46d822012-08-28 23:32:39 +0000945 if ((image->alpha_trait == BlendPixelTrait) &&
cristy4c08aed2011-07-01 19:47:50 +0000946 (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha))
cristy3ed852e2009-09-05 21:47:34 +0000947 {
948 Ascii85Encode(image,ScaleQuantumToChar((Quantum)
949 QuantumRange));
950 Ascii85Encode(image,ScaleQuantumToChar((Quantum)
951 QuantumRange));
952 Ascii85Encode(image,ScaleQuantumToChar((Quantum)
953 QuantumRange));
954 }
955 else
956 if (image->colorspace != CMYKColorspace)
957 {
cristy802d3642011-04-27 02:02:41 +0000958 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000959 GetPixelRed(image,p)));
cristy802d3642011-04-27 02:02:41 +0000960 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000961 GetPixelGreen(image,p)));
cristy802d3642011-04-27 02:02:41 +0000962 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000963 GetPixelBlue(image,p)));
cristy3ed852e2009-09-05 21:47:34 +0000964 }
965 else
966 {
cristy802d3642011-04-27 02:02:41 +0000967 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000968 GetPixelRed(image,p)));
cristy802d3642011-04-27 02:02:41 +0000969 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000970 GetPixelGreen(image,p)));
cristy802d3642011-04-27 02:02:41 +0000971 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000972 GetPixelBlue(image,p)));
cristy9fff7b42011-04-29 01:09:31 +0000973 Ascii85Encode(image,ScaleQuantumToChar(
cristy4c08aed2011-07-01 19:47:50 +0000974 GetPixelBlack(image,p)));
cristy3ed852e2009-09-05 21:47:34 +0000975 }
cristyed231572011-07-14 02:18:59 +0000976 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000977 }
cristy802d3642011-04-27 02:02:41 +0000978 progress=SetImageProgress(image,SaveImageTag,(MagickOffsetType)
979 y,image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000980 if (progress == MagickFalse)
981 break;
982 }
983 Ascii85Flush(image);
984 break;
985 }
986 }
987 }
988 else
989 {
990 /*
991 Dump number of colors and colormap.
992 */
cristyb51dff52011-05-19 16:55:47 +0000993 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g %.20g\n1\n%d\n",
cristye8c25f92010-06-03 00:53:06 +0000994 (double) image->columns,(double) image->rows,(int)
cristy3ed852e2009-09-05 21:47:34 +0000995 (image->colorspace == CMYKColorspace));
996 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000997 (void) FormatLocaleString(buffer,MaxTextExtent,"%d\n",
cristy3ed852e2009-09-05 21:47:34 +0000998 (int) (compression == NoCompression));
999 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +00001000 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g\n",(double)
cristyf2faecf2010-05-28 19:19:36 +00001001 image->colors);
cristy3ed852e2009-09-05 21:47:34 +00001002 (void) WriteBlobString(image,buffer);
cristybb503372010-05-27 20:51:26 +00001003 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00001004 {
cristyb51dff52011-05-19 16:55:47 +00001005 (void) FormatLocaleString(buffer,MaxTextExtent,"%02X%02X%02X\n",
cristy3ed852e2009-09-05 21:47:34 +00001006 ScaleQuantumToChar(image->colormap[i].red),
1007 ScaleQuantumToChar(image->colormap[i].green),
1008 ScaleQuantumToChar(image->colormap[i].blue));
1009 (void) WriteBlobString(image,buffer);
1010 }
1011 switch (compression)
1012 {
1013 case RLECompression:
1014 default:
1015 {
1016 register unsigned char
1017 *q;
1018
1019 /*
1020 Allocate pixel array.
1021 */
1022 length=(size_t) number_pixels;
1023 pixels=(unsigned char *) AcquireQuantumMemory(length,
1024 sizeof(*pixels));
1025 if (pixels == (unsigned char *) NULL)
1026 ThrowWriterException(ResourceLimitError,
1027 "MemoryAllocationFailed");
1028 /*
1029 Dump Runlength encoded pixels.
1030 */
1031 q=pixels;
cristybb503372010-05-27 20:51:26 +00001032 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001033 {
cristy1e178e72011-08-28 19:44:34 +00001034 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001035 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001036 break;
cristybb503372010-05-27 20:51:26 +00001037 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +00001038 {
1039 *q++=(unsigned char) GetPixelIndex(image,p);
cristyed231572011-07-14 02:18:59 +00001040 p+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00001041 }
cristy802d3642011-04-27 02:02:41 +00001042 progress=SetImageProgress(image,SaveImageTag,(MagickOffsetType)
1043 y,image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001044 if (progress == MagickFalse)
1045 break;
1046 }
1047 length=(size_t) (q-pixels);
1048 if (compression == LZWCompression)
cristy018f07f2011-09-04 21:15:19 +00001049 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001050 else
cristy018f07f2011-09-04 21:15:19 +00001051 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001052 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
1053 if (status == MagickFalse)
1054 {
1055 (void) CloseBlob(image);
1056 return(MagickFalse);
1057 }
1058 break;
1059 }
1060 case NoCompression:
1061 {
1062 /*
1063 Dump uncompressed PseudoColor packets.
1064 */
1065 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +00001066 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001067 {
cristy1e178e72011-08-28 19:44:34 +00001068 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001069 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001070 break;
cristybb503372010-05-27 20:51:26 +00001071 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +00001072 {
1073 Ascii85Encode(image,(unsigned char) GetPixelIndex(image,p));
cristyed231572011-07-14 02:18:59 +00001074 p+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00001075 }
cristy802d3642011-04-27 02:02:41 +00001076 progress=SetImageProgress(image,SaveImageTag,(MagickOffsetType)
1077 y,image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001078 if (progress == MagickFalse)
1079 break;
1080 }
1081 Ascii85Flush(image);
1082 break;
1083 }
1084 }
1085 }
1086 (void) WriteBlobByte(image,'\n');
1087 length=(size_t) (TellBlob(image)-stop);
1088 stop=TellBlob(image);
1089 offset=SeekBlob(image,start,SEEK_SET);
1090 if (offset < 0)
1091 ThrowWriterException(CorruptImageError,"ImproperImageHeader");
cristyb51dff52011-05-19 16:55:47 +00001092 (void) FormatLocaleString(buffer,MaxTextExtent,
cristyf2faecf2010-05-28 19:19:36 +00001093 "%%%%BeginData:%13ld %s Bytes\n",(long) length,
cristy3ed852e2009-09-05 21:47:34 +00001094 compression == NoCompression ? "ASCII" : "Binary");
1095 (void) WriteBlobString(image,buffer);
1096 offset=SeekBlob(image,stop,SEEK_SET);
1097 (void) WriteBlobString(image,"%%EndData\n");
1098 if (LocaleCompare(image_info->magick,"PS2") != 0)
1099 (void) WriteBlobString(image,"end\n");
1100 (void) WriteBlobString(image,"%%PageTrailer\n");
1101 if (GetNextImageInList(image) == (Image *) NULL)
1102 break;
1103 image=SyncNextImageInList(image);
1104 status=SetImageProgress(image,SaveImagesTag,scene++,
1105 GetImageListLength(image));
1106 if (status == MagickFalse)
1107 break;
1108 } while (image_info->adjoin != MagickFalse);
1109 (void) WriteBlobString(image,"%%Trailer\n");
1110 if (page > 1)
1111 {
cristyb51dff52011-05-19 16:55:47 +00001112 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +00001113 "%%%%BoundingBox: %.20g %.20g %.20g %.20g\n",ceil(bounds.x1-0.5),
cristy8071c472012-09-24 12:41:06 +00001114 ceil(bounds.y1-0.5),floor(bounds.x2+0.5),floor(bounds.y2+0.5));
cristy3ed852e2009-09-05 21:47:34 +00001115 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +00001116 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00001117 "%%%%HiResBoundingBox: %g %g %g %g\n",bounds.x1,bounds.y1,
cristy8cd5b312010-01-07 01:10:24 +00001118 bounds.x2,bounds.y2);
cristy3ed852e2009-09-05 21:47:34 +00001119 (void) WriteBlobString(image,buffer);
1120 }
1121 (void) WriteBlobString(image,"%%EOF\n");
1122 (void) CloseBlob(image);
1123 return(MagickTrue);
1124}