blob: c80881b31761f22a0b50938e34f827a689949159 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% PPPP SSSSS 33333 %
7% P P SS 33 %
8% PPPP SSS 333 %
9% P SS 33 %
10% P SSSSS 33333 %
11% %
12% %
13% Write Postscript Level III Format %
14% %
15% Software Design %
16% John Cristy %
17% Lars Ruben Skyum %
18% July 1992 %
19% %
20% %
cristy1454be72011-12-19 01:52:48 +000021% Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000022% dedicated to making software imaging solutions freely available. %
23% %
24% You may not use this file except in compliance with the License. You may %
25% obtain a copy of the License at %
26% %
27% http://www.imagemagick.org/script/license.php %
28% %
29% Unless required by applicable law or agreed to in writing, software %
30% distributed under the License is distributed on an "AS IS" BASIS, %
31% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
32% See the License for the specific language governing permissions and %
33% limitations under the License. %
34% %
35%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36%
37%
38*/
39
40/*
41 Include declarations.
42*/
cristy4c08aed2011-07-01 19:47:50 +000043#include "MagickCore/studio.h"
44#include "MagickCore/attribute.h"
45#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
47#include "MagickCore/cache.h"
cristy500d6b92012-03-05 19:12:49 +000048#include "MagickCore/channel.h"
cristy4c08aed2011-07-01 19:47:50 +000049#include "MagickCore/color.h"
50#include "MagickCore/color-private.h"
51#include "MagickCore/compress.h"
52#include "MagickCore/constitute.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/property.h"
67#include "MagickCore/quantum-private.h"
68#include "MagickCore/resource_.h"
69#include "MagickCore/static.h"
70#include "MagickCore/string_.h"
71#include "MagickCore/module.h"
72#include "MagickCore/token.h"
73#include "MagickCore/utility.h"
74#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000075
76/*
77 Define declarations.
78*/
79#define PS3_NoCompression "0"
80#define PS3_FaxCompression "1"
81#define PS3_JPEGCompression "2"
82#define PS3_LZWCompression "3"
83#define PS3_RLECompression "4"
84#define PS3_ZipCompression "5"
85
86#define PS3_RGBColorspace "0"
87#define PS3_CMYKColorspace "1"
88
89#define PS3_DirectClass "0"
90#define PS3_PseudoClass "1"
cristy80975862009-09-25 14:34:31 +000091
92#if defined(MAGICKCORE_TIFF_DELEGATE)
cristy80975862009-09-25 14:34:31 +000093#define CCITTParam "-1"
94#else
95#define CCITTParam "0"
96#endif
cristy3ed852e2009-09-05 21:47:34 +000097
98/*
99 Forward declarations.
100*/
101static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +0000102 WritePS3Image(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000103
104/*
105%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106% %
107% %
108% %
109% R e g i s t e r P S 3 I m a g e %
110% %
111% %
112% %
113%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
114%
115% RegisterPS3Image() adds properties for the PS3 image format to the list of
116% supported formats. The properties include the image format tag, a method to
117% read and/or write the format, whether the format supports the saving of more
118% than one frame to the same file or blob, whether the format supports native
119% in-memory I/O, and a brief description of the format.
120%
121% The format of the RegisterPS3Image method is:
122%
cristybb503372010-05-27 20:51:26 +0000123% size_t RegisterPS3Image(void)
cristy3ed852e2009-09-05 21:47:34 +0000124%
125*/
cristybb503372010-05-27 20:51:26 +0000126ModuleExport size_t RegisterPS3Image(void)
cristy3ed852e2009-09-05 21:47:34 +0000127{
128 MagickInfo
129 *entry;
130
131 entry=SetMagickInfo("EPS3");
132 entry->encoder=(EncodeImageHandler *) WritePS3Image;
133 entry->description=ConstantString("Level III Encapsulated PostScript");
134 entry->module=ConstantString("PS3");
cristyffaf9782011-04-13 19:50:51 +0000135 entry->seekable_stream=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +0000136 (void) RegisterMagickInfo(entry);
137 entry=SetMagickInfo("PS3");
138 entry->encoder=(EncodeImageHandler *) WritePS3Image;
139 entry->description=ConstantString("Level III PostScript");
140 entry->module=ConstantString("PS3");
cristyffaf9782011-04-13 19:50:51 +0000141 entry->seekable_stream=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +0000142 (void) RegisterMagickInfo(entry);
143 return(MagickImageCoderSignature);
144}
145
146/*
147%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
148% %
149% %
150% %
151% U n r e g i s t e r P S 3 I m a g e %
152% %
153% %
154% %
155%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
156%
157% UnregisterPS3Image() removes format registrations made by the PS3 module
158% from the list of supported formats.
159%
160% The format of the UnregisterPS3Image method is:
161%
162% UnregisterPS3Image(void)
163%
164*/
165ModuleExport void UnregisterPS3Image(void)
166{
167 (void) UnregisterMagickInfo("EPS3");
168 (void) UnregisterMagickInfo("PS3");
169}
170
171/*
172%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
173% %
174% %
175% %
176% W r i t e P S 3 I m a g e %
177% %
178% %
179% %
180%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
181%
182% WritePS3Image() translates an image to encapsulated Postscript Level III
183% for printing. If the supplied geometry is null, the image is centered on
184% the Postscript page. Otherwise, the image is positioned as specified by the
185% geometry.
186%
187% The format of the WritePS3Image method is:
188%
cristy1e178e72011-08-28 19:44:34 +0000189% MagickBooleanType WritePS3Image(const ImageInfo *image_info,
190% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000191%
192% A description of each parameter follows:
193%
194% o image_info: Specifies a pointer to a ImageInfo structure.
195%
196% o image: the image.
197%
cristy1e178e72011-08-28 19:44:34 +0000198% o exception: return any errors or warnings in this structure.
199%
cristy3ed852e2009-09-05 21:47:34 +0000200*/
201
cristy47b838c2009-09-19 16:09:30 +0000202static MagickBooleanType Huffman2DEncodeImage(const ImageInfo *image_info,
cristy018f07f2011-09-04 21:15:19 +0000203 Image *image,Image *inject_image,ExceptionInfo *exception)
cristy47b838c2009-09-19 16:09:30 +0000204{
cristy47b838c2009-09-19 16:09:30 +0000205 Image
cristy80975862009-09-25 14:34:31 +0000206 *group4_image;
cristy47b838c2009-09-19 16:09:30 +0000207
208 ImageInfo
209 *write_info;
210
cristy47b838c2009-09-19 16:09:30 +0000211 MagickBooleanType
212 status;
213
cristy80975862009-09-25 14:34:31 +0000214 size_t
215 length;
cristy47b838c2009-09-19 16:09:30 +0000216
217 unsigned char
cristy80975862009-09-25 14:34:31 +0000218 *group4;
cristy47b838c2009-09-19 16:09:30 +0000219
cristy42751fe2009-10-05 00:15:50 +0000220 status=MagickTrue;
cristy47b838c2009-09-19 16:09:30 +0000221 write_info=CloneImageInfo(image_info);
cristy80975862009-09-25 14:34:31 +0000222 (void) CopyMagickString(write_info->filename,"GROUP4:",MaxTextExtent);
223 (void) CopyMagickString(write_info->magick,"GROUP4",MaxTextExtent);
cristy018f07f2011-09-04 21:15:19 +0000224 group4_image=CloneImage(inject_image,0,0,MagickTrue,exception);
cristy80975862009-09-25 14:34:31 +0000225 if (group4_image == (Image *) NULL)
226 return(MagickFalse);
227 group4=(unsigned char *) ImageToBlob(write_info,group4_image,&length,
cristy018f07f2011-09-04 21:15:19 +0000228 exception);
cristy80975862009-09-25 14:34:31 +0000229 group4_image=DestroyImage(group4_image);
230 if (group4 == (unsigned char *) NULL)
231 return(MagickFalse);
cristy47b838c2009-09-19 16:09:30 +0000232 write_info=DestroyImageInfo(write_info);
cristy80975862009-09-25 14:34:31 +0000233 if (WriteBlob(image,length,group4) != (ssize_t) length)
234 status=MagickFalse;
235 group4=(unsigned char *) RelinquishMagickMemory(group4);
236 return(status);
cristy47b838c2009-09-19 16:09:30 +0000237}
cristy80975862009-09-25 14:34:31 +0000238
cristy3ed852e2009-09-05 21:47:34 +0000239static MagickBooleanType SerializeImage(const ImageInfo *image_info,
cristy018f07f2011-09-04 21:15:19 +0000240 Image *image,unsigned char **pixels,size_t *length,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000241{
cristy3ed852e2009-09-05 21:47:34 +0000242 MagickBooleanType
243 status;
244
cristy4c08aed2011-07-01 19:47:50 +0000245 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000246 *p;
247
cristybb503372010-05-27 20:51:26 +0000248 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000249 x;
250
251 register unsigned char
252 *q;
253
cristy802d3642011-04-27 02:02:41 +0000254 ssize_t
255 y;
256
cristy3ed852e2009-09-05 21:47:34 +0000257 assert(image != (Image *) NULL);
258 assert(image->signature == MagickSignature);
259 if (image->debug != MagickFalse)
260 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
261 status=MagickTrue;
cristy802d3642011-04-27 02:02:41 +0000262 *length=(image->colorspace == CMYKColorspace ? 4 : 3)*(size_t)
263 image->columns*image->rows;
cristy3ed852e2009-09-05 21:47:34 +0000264 *pixels=(unsigned char *) AcquireQuantumMemory(*length,sizeof(**pixels));
265 if (*pixels == (unsigned char *) NULL)
266 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
267 q=(*pixels);
cristybb503372010-05-27 20:51:26 +0000268 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000269 {
cristyc82a27b2011-10-21 01:07:16 +0000270 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000271 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000272 break;
cristy3ed852e2009-09-05 21:47:34 +0000273 if (image->colorspace != CMYKColorspace)
cristybb503372010-05-27 20:51:26 +0000274 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000275 {
cristy4c08aed2011-07-01 19:47:50 +0000276 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
277 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
278 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
cristyed231572011-07-14 02:18:59 +0000279 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000280 }
281 else
cristybb503372010-05-27 20:51:26 +0000282 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000283 {
cristy4c08aed2011-07-01 19:47:50 +0000284 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
285 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
286 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
287 *q++=ScaleQuantumToChar(GetPixelBlack(image,p));
cristyed231572011-07-14 02:18:59 +0000288 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000289 }
290 if (image->previous == (Image *) NULL)
291 {
cristycee97112010-05-28 00:44:52 +0000292 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy802d3642011-04-27 02:02:41 +0000293 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000294 if (status == MagickFalse)
295 break;
296 }
297 }
298 if (status == MagickFalse)
299 *pixels=(unsigned char *) RelinquishMagickMemory(*pixels);
300 return(status);
301}
302
303static MagickBooleanType SerializeImageChannel(const ImageInfo *image_info,
cristy018f07f2011-09-04 21:15:19 +0000304 Image *image,unsigned char **pixels,size_t *length,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000305{
cristy3ed852e2009-09-05 21:47:34 +0000306 MagickBooleanType
307 status;
308
cristy4c08aed2011-07-01 19:47:50 +0000309 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000310 *p;
311
cristybb503372010-05-27 20:51:26 +0000312 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000313 x;
314
315 register unsigned char
316 *q;
317
cristybb503372010-05-27 20:51:26 +0000318 size_t
cristy3ed852e2009-09-05 21:47:34 +0000319 pack,
320 padded_columns;
321
cristy802d3642011-04-27 02:02:41 +0000322 ssize_t
323 y;
324
325 unsigned char
326 code,
327 bit;
328
cristy3ed852e2009-09-05 21:47:34 +0000329 assert(image != (Image *) NULL);
330 assert(image->signature == MagickSignature);
331 if (image->debug != MagickFalse)
332 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
333 status=MagickTrue;
cristyc82a27b2011-10-21 01:07:16 +0000334 pack=IsImageMonochrome(image,exception) == MagickFalse ? 1UL : 8UL;
cristy3ed852e2009-09-05 21:47:34 +0000335 padded_columns=((image->columns+pack-1)/pack)*pack;
336 *length=(size_t) padded_columns*image->rows/pack;
337 *pixels=(unsigned char *) AcquireQuantumMemory(*length,sizeof(**pixels));
338 if (*pixels == (unsigned char *) NULL)
339 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
340 q=(*pixels);
cristybb503372010-05-27 20:51:26 +0000341 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000342 {
cristy018f07f2011-09-04 21:15:19 +0000343 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000344 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000345 break;
346 if (pack == 1)
cristybb503372010-05-27 20:51:26 +0000347 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000348 {
cristy4c08aed2011-07-01 19:47:50 +0000349 *q++=ScaleQuantumToChar(GetPixelIntensity(image,p));
cristyed231572011-07-14 02:18:59 +0000350 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000351 }
352 else
353 {
354 code='\0';
cristybb503372010-05-27 20:51:26 +0000355 for (x=0; x < (ssize_t) padded_columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000356 {
357 bit=(unsigned char) 0x00;
cristybb503372010-05-27 20:51:26 +0000358 if (x < (ssize_t) image->columns)
cristy4c08aed2011-07-01 19:47:50 +0000359 bit=(unsigned char) (GetPixelIntensity(image,p) == (Quantum)
360 TransparentAlpha ? 0x01 : 0x00);
cristy3ed852e2009-09-05 21:47:34 +0000361 code=(code << 1)+bit;
362 if (((x+1) % pack) == 0)
363 {
364 *q++=code;
365 code='\0';
366 }
cristyed231572011-07-14 02:18:59 +0000367 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000368 }
369 }
cristycee97112010-05-28 00:44:52 +0000370 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy802d3642011-04-27 02:02:41 +0000371 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000372 if (status == MagickFalse)
373 break;
374 }
375 if (status == MagickFalse)
376 *pixels=(unsigned char *) RelinquishMagickMemory(*pixels);
377 return(status);
378}
379
380static MagickBooleanType SerializeImageIndexes(const ImageInfo *image_info,
cristy018f07f2011-09-04 21:15:19 +0000381 Image *image,unsigned char **pixels,size_t *length,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000382{
cristy3ed852e2009-09-05 21:47:34 +0000383 MagickBooleanType
384 status;
385
cristy4c08aed2011-07-01 19:47:50 +0000386 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000387 *p;
388
cristybb503372010-05-27 20:51:26 +0000389 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000390 x;
391
392 register unsigned char
393 *q;
394
cristy802d3642011-04-27 02:02:41 +0000395 ssize_t
396 y;
397
cristy3ed852e2009-09-05 21:47:34 +0000398 assert(image != (Image *) NULL);
399 assert(image->signature == MagickSignature);
400 if (image->debug != MagickFalse)
401 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
402 status=MagickTrue;
403 *length=(size_t) image->columns*image->rows;
404 *pixels=(unsigned char *) AcquireQuantumMemory(*length,sizeof(**pixels));
405 if (*pixels == (unsigned char *) NULL)
406 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
407 q=(*pixels);
cristybb503372010-05-27 20:51:26 +0000408 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000409 {
cristy018f07f2011-09-04 21:15:19 +0000410 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000411 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000412 break;
cristybb503372010-05-27 20:51:26 +0000413 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +0000414 {
415 *q++=(unsigned char) GetPixelIndex(image,p);
cristyed231572011-07-14 02:18:59 +0000416 p+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000417 }
cristy3ed852e2009-09-05 21:47:34 +0000418 if (image->previous == (Image *) NULL)
419 {
cristycee97112010-05-28 00:44:52 +0000420 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy802d3642011-04-27 02:02:41 +0000421 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000422 if (status == MagickFalse)
423 break;
424 }
425 }
426 if (status == MagickFalse)
427 *pixels=(unsigned char *) RelinquishMagickMemory(*pixels);
428 return(status);
429}
430
431static MagickBooleanType WritePS3MaskImage(const ImageInfo *image_info,
cristy018f07f2011-09-04 21:15:19 +0000432 Image *image,const CompressionType compression,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000433{
434 char
435 buffer[MaxTextExtent];
436
437 Image
438 *mask_image;
439
440 MagickBooleanType
441 status;
442
443 MagickOffsetType
444 offset,
445 start,
446 stop;
447
cristybb503372010-05-27 20:51:26 +0000448 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000449 i;
450
451 size_t
452 length;
453
454 unsigned char
455 *pixels;
456
457 assert(image_info != (ImageInfo *) NULL);
458 assert(image_info->signature == MagickSignature);
459 assert(image != (Image *) NULL);
460 assert(image->signature == MagickSignature);
461 if (image->debug != MagickFalse)
462 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
463 assert(image->matte != MagickFalse);
464 status=MagickTrue;
465 /*
466 Note BeginData DSC comment for update later.
467 */
468 start=TellBlob(image);
cristyb51dff52011-05-19 16:55:47 +0000469 (void) FormatLocaleString(buffer,MaxTextExtent,
cristy802d3642011-04-27 02:02:41 +0000470 "%%%%BeginData:%13ld %s Bytes\n",0L,compression == NoCompression ?
471 "ASCII" : "BINARY");
cristy3ed852e2009-09-05 21:47:34 +0000472 (void) WriteBlobString(image,buffer);
473 stop=TellBlob(image);
474 /*
475 Only lossless compressions for the mask.
476 */
477 switch (compression)
478 {
479 case NoCompression:
480 default:
481 {
cristyb51dff52011-05-19 16:55:47 +0000482 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000483 "currentfile %.20g %.20g "PS3_NoCompression" ByteStreamDecodeFilter\n",
484 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000485 break;
486 }
487 case FaxCompression:
488 case Group4Compression:
489 {
cristyb51dff52011-05-19 16:55:47 +0000490 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000491 "currentfile %.20g %.20g "PS3_FaxCompression" ByteStreamDecodeFilter\n",
492 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000493 break;
494 }
495 case LZWCompression:
496 {
cristyb51dff52011-05-19 16:55:47 +0000497 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000498 "currentfile %.20g %.20g "PS3_LZWCompression" ByteStreamDecodeFilter\n",
499 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000500 break;
501 }
502 case RLECompression:
503 {
cristyb51dff52011-05-19 16:55:47 +0000504 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000505 "currentfile %.20g %.20g "PS3_RLECompression" ByteStreamDecodeFilter\n",
506 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000507 break;
508 }
509 case ZipCompression:
510 {
cristyb51dff52011-05-19 16:55:47 +0000511 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000512 "currentfile %.20g %.20g "PS3_ZipCompression" ByteStreamDecodeFilter\n",
513 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000514 break;
515 }
516 }
517 (void) WriteBlobString(image,buffer);
518 (void) WriteBlobString(image,"/ReusableStreamDecode filter\n");
cristydbeca022012-01-11 17:07:34 +0000519 mask_image=SeparateImage(image,AlphaChannel,exception);
cristy3ed852e2009-09-05 21:47:34 +0000520 if (mask_image == (Image *) NULL)
cristyc82a27b2011-10-21 01:07:16 +0000521 ThrowWriterException(CoderError,exception->reason);
cristy018f07f2011-09-04 21:15:19 +0000522 (void) SetImageType(mask_image,BilevelType,exception);
523 (void) SetImageType(mask_image,PaletteType,exception);
cristy3ed852e2009-09-05 21:47:34 +0000524 mask_image->matte=MagickFalse;
525 pixels=(unsigned char *) NULL;
526 length=0;
527 switch (compression)
528 {
529 case NoCompression:
530 default:
531 {
cristy018f07f2011-09-04 21:15:19 +0000532 status=SerializeImageChannel(image_info,mask_image,&pixels,&length,
533 exception);
cristy3ed852e2009-09-05 21:47:34 +0000534 if (status == MagickFalse)
535 break;
536 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +0000537 for (i=0; i < (ssize_t) length; i++)
cristy3ed852e2009-09-05 21:47:34 +0000538 Ascii85Encode(image,pixels[i]);
539 Ascii85Flush(image);
540 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
541 break;
542 }
543 case FaxCompression:
544 case Group4Compression:
545 {
546 if ((compression == FaxCompression) ||
547 (LocaleCompare(CCITTParam,"0") == 0))
cristy018f07f2011-09-04 21:15:19 +0000548 status=HuffmanEncodeImage(image_info,image,mask_image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000549 else
cristy018f07f2011-09-04 21:15:19 +0000550 status=Huffman2DEncodeImage(image_info,image,mask_image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000551 break;
552 }
553 case LZWCompression:
554 {
cristy018f07f2011-09-04 21:15:19 +0000555 status=SerializeImageChannel(image_info,mask_image,&pixels,&length,
556 exception);
cristy3ed852e2009-09-05 21:47:34 +0000557 if (status == MagickFalse)
558 break;
cristy018f07f2011-09-04 21:15:19 +0000559 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000560 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
561 break;
562 }
563 case RLECompression:
564 {
cristy018f07f2011-09-04 21:15:19 +0000565 status=SerializeImageChannel(image_info,mask_image,&pixels,&length,
566 exception);
cristy3ed852e2009-09-05 21:47:34 +0000567 if (status == MagickFalse)
568 break;
cristy018f07f2011-09-04 21:15:19 +0000569 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000570 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
571 break;
572 }
573 case ZipCompression:
574 {
cristy018f07f2011-09-04 21:15:19 +0000575 status=SerializeImageChannel(image_info,mask_image,&pixels,&length,
576 exception);
cristy3ed852e2009-09-05 21:47:34 +0000577 if (status == MagickFalse)
578 break;
cristy018f07f2011-09-04 21:15:19 +0000579 status=ZLIBEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000580 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
581 break;
582 }
583 }
584 mask_image=DestroyImage(mask_image);
585 (void) WriteBlobByte(image,'\n');
586 length=(size_t) (TellBlob(image)-stop);
587 stop=TellBlob(image);
588 offset=SeekBlob(image,start,SEEK_SET);
589 if (offset < 0)
590 ThrowWriterException(CorruptImageError,"ImproperImageHeader");
cristyb51dff52011-05-19 16:55:47 +0000591 (void) FormatLocaleString(buffer,MaxTextExtent,
cristyf2faecf2010-05-28 19:19:36 +0000592 "%%%%BeginData:%13ld %s Bytes\n",(long) length,
cristy3ed852e2009-09-05 21:47:34 +0000593 compression == NoCompression ? "ASCII" : "BINARY");
594 (void) WriteBlobString(image,buffer);
595 offset=SeekBlob(image,stop,SEEK_SET);
596 if (offset < 0)
597 ThrowWriterException(CorruptImageError,"ImproperImageHeader");
598 (void) WriteBlobString(image,"%%EndData\n");
599 (void) WriteBlobString(image, "/mask_stream exch def\n");
600 return(status);
601}
602
cristy1e178e72011-08-28 19:44:34 +0000603static MagickBooleanType WritePS3Image(const ImageInfo *image_info,Image *image,
604 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000605{
606 static const char
607 *PostscriptProlog[]=
608 {
609 "/ByteStreamDecodeFilter",
610 "{",
611 " /z exch def",
612 " /r exch def",
613 " /c exch def",
614 " z "PS3_NoCompression" eq { /ASCII85Decode filter } if",
615 " z "PS3_FaxCompression" eq",
616 " {",
617 " <<",
618 " /K "CCITTParam,
619 " /Columns c",
620 " /Rows r",
621 " >>",
622 " /CCITTFaxDecode filter",
623 " } if",
624 " z "PS3_JPEGCompression" eq { /DCTDecode filter } if",
625 " z "PS3_LZWCompression" eq { /LZWDecode filter } if",
626 " z "PS3_RLECompression" eq { /RunLengthDecode filter } if",
627 " z "PS3_ZipCompression" eq { /FlateDecode filter } if",
628 "} bind def",
629 "",
630 "/DirectClassImageDict",
631 "{",
632 " colorspace "PS3_RGBColorspace" eq",
633 " {",
634 " /DeviceRGB setcolorspace",
635 " <<",
636 " /ImageType 1",
637 " /Width columns",
638 " /Height rows",
639 " /BitsPerComponent 8",
640 " /DataSource pixel_stream",
641 " /MultipleDataSources false",
642 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
643 " /Decode [0 1 0 1 0 1]",
644 " >>",
645 " }",
646 " {",
647 " /DeviceCMYK setcolorspace",
648 " <<",
649 " /ImageType 1",
650 " /Width columns",
651 " /Height rows",
652 " /BitsPerComponent 8",
653 " /DataSource pixel_stream",
654 " /MultipleDataSources false",
655 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
656 " /Decode",
657 " compression "PS3_JPEGCompression" eq",
658 " { [1 0 1 0 1 0 1 0] }",
659 " { [0 1 0 1 0 1 0 1] }",
660 " ifelse",
661 " >>",
662 " }",
663 " ifelse",
664 "} bind def",
665 "",
666 "/PseudoClassImageDict",
667 "{",
668 " % Colors in colormap image.",
669 " currentfile buffer readline pop",
670 " token pop /colors exch def pop",
671 " colors 0 eq",
672 " {",
673 " % Depth of grayscale image.",
674 " currentfile buffer readline pop",
675 " token pop /bits exch def pop",
676 " /DeviceGray setcolorspace",
677 " <<",
678 " /ImageType 1",
679 " /Width columns",
680 " /Height rows",
681 " /BitsPerComponent bits",
682 " /Decode [0 1]",
683 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
684 " /DataSource pixel_stream",
685 " >>",
686 " }",
687 " {",
688 " % RGB colormap.",
689 " /colormap colors 3 mul string def",
690 " compression "PS3_NoCompression" eq",
691 " { currentfile /ASCII85Decode filter colormap readstring pop pop }",
692 " { currentfile colormap readstring pop pop }",
693 " ifelse",
694 " [ /Indexed /DeviceRGB colors 1 sub colormap ] setcolorspace",
695 " <<",
696 " /ImageType 1",
697 " /Width columns",
698 " /Height rows",
699 " /BitsPerComponent 8",
700 " /Decode [0 255]",
701 " /ImageMatrix [columns 0 0 rows neg 0 rows]",
702 " /DataSource pixel_stream",
703 " >>",
704 " }",
705 " ifelse",
706 "} bind def",
707 "",
708 "/NonMaskedImageDict",
709 "{",
710 " class "PS3_PseudoClass" eq",
711 " { PseudoClassImageDict }",
712 " { DirectClassImageDict }",
713 " ifelse",
714 "} bind def",
715 "",
716 "/MaskedImageDict",
717 "{",
718 " <<",
719 " /ImageType 3",
720 " /InterleaveType 3",
721 " /DataDict NonMaskedImageDict",
722 " /MaskDict",
723 " <<",
724 " /ImageType 1",
725 " /Width columns",
726 " /Height rows",
727 " /BitsPerComponent 1",
728 " /DataSource mask_stream",
729 " /MultipleDataSources false",
730 " /ImageMatrix [ columns 0 0 rows neg 0 rows]",
731 " /Decode [ 0 1 ]",
732 " >>",
733 " >>",
734 "} bind def",
735 "",
736 "/ClipImage",
737 "{} def",
738 "",
739 "/DisplayImage",
740 "{",
741 " /buffer 512 string def",
742 " % Translation.",
743 " currentfile buffer readline pop",
744 " token pop /x exch def",
745 " token pop /y exch def pop",
746 " x y translate",
747 " % Image size and font size.",
748 " currentfile buffer readline pop",
749 " token pop /x exch def",
750 " token pop /y exch def pop",
751 " currentfile buffer readline pop",
752 " token pop /pointsize exch def pop",
753 (char *) NULL
754 },
755 *PostscriptEpilog[]=
756 {
757 " x y scale",
758 " % Clipping path.",
759 " currentfile buffer readline pop",
760 " token pop /clipped exch def pop",
761 " % Showpage.",
762 " currentfile buffer readline pop",
763 " token pop /sp exch def pop",
764 " % Image pixel size.",
765 " currentfile buffer readline pop",
766 " token pop /columns exch def",
767 " token pop /rows exch def pop",
768 " % Colorspace (RGB/CMYK).",
769 " currentfile buffer readline pop",
770 " token pop /colorspace exch def pop",
771 " % Transparency.",
772 " currentfile buffer readline pop",
773 " token pop /alpha exch def pop",
774 " % Stencil mask?",
775 " currentfile buffer readline pop",
776 " token pop /stencil exch def pop",
777 " % Image class (direct/pseudo).",
778 " currentfile buffer readline pop",
779 " token pop /class exch def pop",
780 " % Compression type.",
781 " currentfile buffer readline pop",
782 " token pop /compression exch def pop",
783 " % Clip and render.",
784 " /pixel_stream currentfile columns rows compression ByteStreamDecodeFilter def",
785 " clipped { ClipImage } if",
786 " alpha stencil not and",
787 " { MaskedImageDict mask_stream resetfile }",
788 " { NonMaskedImageDict }",
789 " ifelse",
790 " stencil { 0 setgray imagemask } { image } ifelse",
791 " sp { showpage } if",
792 "} bind def",
793 (char *) NULL
794 };
795
796 char
797 buffer[MaxTextExtent],
798 date[MaxTextExtent],
799 **labels,
800 page_geometry[MaxTextExtent];
801
802 CompressionType
803 compression;
804
805 const char
806 *option,
807 **q,
808 *value;
809
810 double
811 pointsize;
812
813 GeometryInfo
814 geometry_info;
815
cristy3ed852e2009-09-05 21:47:34 +0000816 MagickBooleanType
817 status;
818
819 MagickOffsetType
820 offset,
821 scene,
822 start,
823 stop;
824
825 MagickStatusType
826 flags;
827
828 PointInfo
829 delta,
830 resolution,
831 scale;
832
833 RectangleInfo
834 geometry,
835 media_info,
836 page_info;
837
cristybb503372010-05-27 20:51:26 +0000838 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000839 i;
840
841 SegmentInfo
842 bounds;
843
844 size_t
cristy802d3642011-04-27 02:02:41 +0000845 length,
846 page,
847 pixel,
848 text_size;
849
850 ssize_t
851 j;
cristy3ed852e2009-09-05 21:47:34 +0000852
853 time_t
854 timer;
855
856 unsigned char
857 *pixels;
858
cristy3ed852e2009-09-05 21:47:34 +0000859 /*
860 Open output image file.
861 */
862 assert(image_info != (const ImageInfo *) NULL);
863 assert(image_info->signature == MagickSignature);
864 assert(image != (Image *) NULL);
865 assert(image->signature == MagickSignature);
866 if (image->debug != MagickFalse)
867 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000868 assert(exception != (ExceptionInfo *) NULL);
869 assert(exception->signature == MagickSignature);
cristy1e178e72011-08-28 19:44:34 +0000870 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000871 if (status == MagickFalse)
872 return(MagickFalse);
873 compression=image->compression;
874 if (image_info->compression != UndefinedCompression)
875 compression=image_info->compression;
876 switch (compression)
877 {
878 case FaxCompression:
879 case Group4Compression:
880 {
cristy1e178e72011-08-28 19:44:34 +0000881 if ((IsImageMonochrome(image,exception) == MagickFalse) ||
cristy3ed852e2009-09-05 21:47:34 +0000882 (image->matte != MagickFalse))
883 compression=RLECompression;
884 break;
885 }
886#if !defined(MAGICKCORE_JPEG_DELEGATE)
887 case JPEGCompression:
888 {
889 compression=RLECompression;
cristy1e178e72011-08-28 19:44:34 +0000890 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +0000891 MissingDelegateError,"DelegateLibrarySupportNotBuiltIn","`%s' (JPEG)",
892 image->filename);
893 break;
894 }
895#endif
896#if !defined(MAGICKCORE_ZLIB_DELEGATE)
897 case ZipCompression:
898 {
899 compression=RLECompression;
cristy1e178e72011-08-28 19:44:34 +0000900 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +0000901 MissingDelegateError,"DelegateLibrarySupportNotBuiltIn","`%s' (ZLIB)",
902 image->filename);
903 break;
904 }
905#endif
906 default:
907 break;
908 }
909 (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
910 page=0;
911 scene=0;
912 do
913 {
914 /*
915 Scale relative to dots-per-inch.
916 */
917 delta.x=DefaultResolution;
918 delta.y=DefaultResolution;
cristy2a11bef2011-10-28 18:33:11 +0000919 resolution.x=image->resolution.x;
920 resolution.y=image->resolution.y;
cristy3ed852e2009-09-05 21:47:34 +0000921 if ((resolution.x == 0.0) || (resolution.y == 0.0))
922 {
923 flags=ParseGeometry(PSDensityGeometry,&geometry_info);
924 resolution.x=geometry_info.rho;
925 resolution.y=geometry_info.sigma;
926 if ((flags & SigmaValue) == 0)
927 resolution.y=resolution.x;
928 }
929 if (image_info->density != (char *) NULL)
930 {
931 flags=ParseGeometry(image_info->density,&geometry_info);
932 resolution.x=geometry_info.rho;
933 resolution.y=geometry_info.sigma;
934 if ((flags & SigmaValue) == 0)
935 resolution.y=resolution.x;
936 }
937 if (image->units == PixelsPerCentimeterResolution)
938 {
cristybb503372010-05-27 20:51:26 +0000939 resolution.x=(size_t) (100.0*2.54*resolution.x+0.5)/100.0;
940 resolution.y=(size_t) (100.0*2.54*resolution.y+0.5)/100.0;
cristy3ed852e2009-09-05 21:47:34 +0000941 }
942 SetGeometry(image,&geometry);
cristyb51dff52011-05-19 16:55:47 +0000943 (void) FormatLocaleString(page_geometry,MaxTextExtent,"%.20gx%.20g",
cristye8c25f92010-06-03 00:53:06 +0000944 (double) image->columns,(double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000945 if (image_info->page != (char *) NULL)
946 (void) CopyMagickString(page_geometry,image_info->page,MaxTextExtent);
947 else
948 if ((image->page.width != 0) && (image->page.height != 0))
cristyb51dff52011-05-19 16:55:47 +0000949 (void) FormatLocaleString(page_geometry,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +0000950 "%.20gx%.20g%+.20g%+.20g",(double) image->page.width,(double)
951 image->page.height,(double) image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +0000952 else
953 if ((image->gravity != UndefinedGravity) &&
954 (LocaleCompare(image_info->magick,"PS") == 0))
955 (void) CopyMagickString(page_geometry,PSPageGeometry,MaxTextExtent);
956 (void) ConcatenateMagickString(page_geometry,">",MaxTextExtent);
957 (void) ParseMetaGeometry(page_geometry,&geometry.x,&geometry.y,
958 &geometry.width,&geometry.height);
959 scale.x=(double) (geometry.width*delta.x)/resolution.x;
cristybb503372010-05-27 20:51:26 +0000960 geometry.width=(size_t) floor(scale.x+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000961 scale.y=(double) (geometry.height*delta.y)/resolution.y;
cristybb503372010-05-27 20:51:26 +0000962 geometry.height=(size_t) floor(scale.y+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000963 (void) ParseAbsoluteGeometry(page_geometry,&media_info);
cristy1e178e72011-08-28 19:44:34 +0000964 (void) ParseGravityGeometry(image,page_geometry,&page_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000965 if (image->gravity != UndefinedGravity)
966 {
967 geometry.x=(-page_info.x);
cristybb503372010-05-27 20:51:26 +0000968 geometry.y=(ssize_t) (media_info.height+page_info.y-image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000969 }
970 pointsize=12.0;
971 if (image_info->pointsize != 0.0)
972 pointsize=image_info->pointsize;
973 text_size=0;
cristyd15e6592011-10-15 00:13:06 +0000974 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +0000975 if (value != (const char *) NULL)
cristybb503372010-05-27 20:51:26 +0000976 text_size=(size_t) (MultilineCensus(value)*pointsize+12);
cristy3ed852e2009-09-05 21:47:34 +0000977 page++;
978 if (page == 1)
979 {
980 /*
981 Postscript header on the first page.
982 */
983 if (LocaleCompare(image_info->magick,"PS3") == 0)
984 (void) CopyMagickString(buffer,"%!PS-Adobe-3.0\n",MaxTextExtent);
985 else
986 (void) CopyMagickString(buffer,"%!PS-Adobe-3.0 EPSF-3.0\n",
987 MaxTextExtent);
988 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000989 (void) FormatLocaleString(buffer,MaxTextExtent,
cristy3ed852e2009-09-05 21:47:34 +0000990 "%%%%Creator: ImageMagick %s\n",MagickLibVersionText);
991 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +0000992 (void) FormatLocaleString(buffer,MaxTextExtent,"%%%%Title: %s\n",
cristy3ed852e2009-09-05 21:47:34 +0000993 image->filename);
994 (void) WriteBlobString(image,buffer);
995 timer=time((time_t *) NULL);
996 (void) FormatMagickTime(timer,MaxTextExtent,date);
cristyb51dff52011-05-19 16:55:47 +0000997 (void) FormatLocaleString(buffer,MaxTextExtent,
cristy3ed852e2009-09-05 21:47:34 +0000998 "%%%%CreationDate: %s\n",date);
999 (void) WriteBlobString(image,buffer);
1000 bounds.x1=(double) geometry.x;
1001 bounds.y1=(double) geometry.y;
1002 bounds.x2=(double) geometry.x+scale.x;
1003 bounds.y2=(double) geometry.y+scale.y+text_size;
1004 if ((image_info->adjoin != MagickFalse) &&
1005 (GetNextImageInList(image) != (Image *) NULL))
1006 {
1007 (void) WriteBlobString(image,"%%BoundingBox: (atend)\n");
1008 (void) WriteBlobString(image,"%%HiResBoundingBox: (atend)\n");
1009 }
1010 else
1011 {
cristyb51dff52011-05-19 16:55:47 +00001012 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00001013 "%%%%BoundingBox: %g %g %g %g\n",floor(bounds.x1+0.5),
cristy3ed852e2009-09-05 21:47:34 +00001014 floor(bounds.y1+0.5),ceil(bounds.x2-0.5),ceil(bounds.y2-0.5));
1015 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +00001016 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00001017 "%%%%HiResBoundingBox: %g %g %g %g\n",bounds.x1,
cristy8cd5b312010-01-07 01:10:24 +00001018 bounds.y1,bounds.x2,bounds.y2);
cristy3ed852e2009-09-05 21:47:34 +00001019 (void) WriteBlobString(image,buffer);
1020 if (image->colorspace == CMYKColorspace)
1021 (void) WriteBlobString(image,
1022 "%%DocumentProcessColors: Cyan Magenta Yellow Black\n");
1023 else
cristy1e178e72011-08-28 19:44:34 +00001024 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001025 (void) WriteBlobString(image,
1026 "%%DocumentProcessColors: Black\n");
1027 }
1028 /*
1029 Font resources
1030 */
cristyd15e6592011-10-15 00:13:06 +00001031 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +00001032 if (value != (const char *) NULL)
1033 (void) WriteBlobString(image,
1034 "%%DocumentNeededResources: font Helvetica\n");
1035 (void) WriteBlobString(image,"%%LanguageLevel: 3\n");
1036 /*
1037 Pages, orientation and order.
1038 */
1039 if (LocaleCompare(image_info->magick,"PS3") != 0)
1040 (void) WriteBlobString(image,"%%Pages: 1\n");
1041 else
1042 {
1043 (void) WriteBlobString(image,"%%Orientation: Portrait\n");
1044 (void) WriteBlobString(image,"%%PageOrder: Ascend\n");
1045 if (image_info->adjoin == MagickFalse)
1046 (void) CopyMagickString(buffer,"%%Pages: 1\n",MaxTextExtent);
1047 else
cristyb51dff52011-05-19 16:55:47 +00001048 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +00001049 "%%%%Pages: %.20g\n",(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +00001050 (void) WriteBlobString(image,buffer);
1051 }
1052 (void) WriteBlobString(image,"%%EndComments\n");
1053 /*
1054 The static postscript procedures prolog.
1055 */
1056 (void)WriteBlobString(image,"%%BeginProlog\n");
1057 for (q=PostscriptProlog; *q; q++)
1058 {
1059 (void) WriteBlobString(image,*q);
1060 (void) WriteBlobByte(image,'\n');
1061 }
1062 /*
1063 One label line for each line in label string.
1064 */
cristyd15e6592011-10-15 00:13:06 +00001065 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +00001066 if (value != (const char *) NULL)
1067 {
1068 (void) WriteBlobString(image,"\n %% Labels.\n /Helvetica "
1069 " findfont pointsize scalefont setfont\n");
cristybb503372010-05-27 20:51:26 +00001070 for (i=(ssize_t) MultilineCensus(value)-1; i >= 0; i--)
cristy3ed852e2009-09-05 21:47:34 +00001071 {
1072 (void) WriteBlobString(image,
1073 " currentfile buffer readline pop token pop\n");
cristyb51dff52011-05-19 16:55:47 +00001074 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00001075 " 0 y %g add moveto show pop\n",i*pointsize+12);
cristy3ed852e2009-09-05 21:47:34 +00001076 (void) WriteBlobString(image,buffer);
1077 }
1078 }
1079 /*
1080 The static postscript procedures epilog.
1081 */
1082 for (q=PostscriptEpilog; *q; q++)
1083 {
1084 (void) WriteBlobString(image,*q);
1085 (void) WriteBlobByte(image,'\n');
1086 }
1087 (void)WriteBlobString(image,"%%EndProlog\n");
1088 }
cristyb51dff52011-05-19 16:55:47 +00001089 (void) FormatLocaleString(buffer,MaxTextExtent,"%%%%Page: 1 %.20g\n",
cristye8c25f92010-06-03 00:53:06 +00001090 (double) page);
cristy3ed852e2009-09-05 21:47:34 +00001091 (void) WriteBlobString(image,buffer);
1092 /*
1093 Page bounding box.
1094 */
cristyb51dff52011-05-19 16:55:47 +00001095 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye8c25f92010-06-03 00:53:06 +00001096 "%%%%PageBoundingBox: %.20g %.20g %.20g %.20g\n",(double) geometry.x,
1097 (double) geometry.y,geometry.x+(double) geometry.width,geometry.y+
1098 (double) (geometry.height+text_size));
cristy3ed852e2009-09-05 21:47:34 +00001099 (void) WriteBlobString(image,buffer);
1100 /*
1101 Page process colors if not RGB.
1102 */
1103 if (image->colorspace == CMYKColorspace)
1104 (void) WriteBlobString(image,
1105 "%%PageProcessColors: Cyan Magenta Yellow Black\n");
1106 else
cristy1e178e72011-08-28 19:44:34 +00001107 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001108 (void) WriteBlobString(image,"%%PageProcessColors: Black\n");
1109 /*
1110 Adjust document bounding box to bound page bounding box.
1111 */
1112 if ((double) geometry.x < bounds.x1)
1113 bounds.x1=(double) geometry.x;
1114 if ((double) geometry.y < bounds.y1)
1115 bounds.y1=(double) geometry.y;
1116 if ((double) (geometry.x+scale.x) > bounds.x2)
1117 bounds.x2=(double) geometry.x+scale.x;
1118 if ((double) (geometry.y+scale.y+text_size) > bounds.y2)
1119 bounds.y2=(double) geometry.y+scale.y+text_size;
1120 /*
1121 Page font resource if there's a label.
1122 */
cristyd15e6592011-10-15 00:13:06 +00001123 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +00001124 if (value != (const char *) NULL)
1125 (void) WriteBlobString(image,"%%PageResources: font Helvetica\n");
1126 /*
1127 PS clipping path from Photoshop clipping path.
1128 */
cristy183a5c72012-01-30 01:40:35 +00001129 if ((image->mask != MagickFalse) ||
cristy10a6c612012-01-29 21:41:05 +00001130 (LocaleNCompare("8BIM:",image->magick_filename,5) != 0))
cristy3ed852e2009-09-05 21:47:34 +00001131 (void) WriteBlobString(image,"/ClipImage {} def\n");
1132 else
1133 {
1134 const char
1135 *value;
1136
cristy10a6c612012-01-29 21:41:05 +00001137 value=GetImageProperty(image,image->magick_filename,exception);
cristy3ed852e2009-09-05 21:47:34 +00001138 if (value == (const char *) NULL)
1139 return(MagickFalse);
1140 (void) WriteBlobString(image,value);
1141 (void) WriteBlobByte(image,'\n');
1142 }
1143 /*
1144 Push a dictionary for our own def's if this an EPS.
1145 */
1146 if (LocaleCompare(image_info->magick,"PS3") != 0)
1147 (void) WriteBlobString(image,"userdict begin\n");
1148 /*
1149 Image mask.
1150 */
1151 if ((image->matte != MagickFalse) &&
cristy018f07f2011-09-04 21:15:19 +00001152 (WritePS3MaskImage(image_info,image,compression,exception) == MagickFalse))
cristy3ed852e2009-09-05 21:47:34 +00001153 {
1154 (void) CloseBlob(image);
1155 return(MagickFalse);
1156 }
1157 /*
1158 Remember position of BeginData comment so we can update it.
1159 */
1160 start=TellBlob(image);
cristyb51dff52011-05-19 16:55:47 +00001161 (void) FormatLocaleString(buffer,MaxTextExtent,
cristy3ed852e2009-09-05 21:47:34 +00001162 "%%%%BeginData:%13ld %s Bytes\n",0L,
1163 compression == NoCompression ? "ASCII" : "BINARY");
1164 (void) WriteBlobString(image,buffer);
1165 stop=TellBlob(image);
1166 (void) WriteBlobString(image,"DisplayImage\n");
1167 /*
1168 Translate, scale, and font point size.
1169 */
cristyb51dff52011-05-19 16:55:47 +00001170 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g %.20g\n%g %g\n%g\n",
cristye8c25f92010-06-03 00:53:06 +00001171 (double) geometry.x,(double) geometry.y,scale.x,scale.y,pointsize);
cristy3ed852e2009-09-05 21:47:34 +00001172 (void) WriteBlobString(image,buffer);
1173 /*
1174 Output labels.
1175 */
1176 labels=(char **) NULL;
cristyd15e6592011-10-15 00:13:06 +00001177 value=GetImageProperty(image,"label",exception);
cristy3ed852e2009-09-05 21:47:34 +00001178 if (value != (const char *) NULL)
1179 labels=StringToList(value);
1180 if (labels != (char **) NULL)
1181 {
1182 for (i=0; labels[i] != (char *) NULL; i++)
1183 {
1184 if (compression != NoCompression)
1185 {
1186 for (j=0; labels[i][j] != '\0'; j++)
1187 (void) WriteBlobByte(image,(unsigned char) labels[i][j]);
1188 (void) WriteBlobByte(image,'\n');
1189 }
1190 else
1191 {
1192 (void) WriteBlobString(image,"<~");
1193 Ascii85Initialize(image);
1194 for (j=0; labels[i][j] != '\0'; j++)
1195 Ascii85Encode(image,(unsigned char) labels[i][j]);
1196 Ascii85Flush(image);
1197 }
1198 labels[i]=DestroyString(labels[i]);
1199 }
1200 labels=(char **) RelinquishMagickMemory(labels);
1201 }
1202 /*
1203 Photoshop clipping path active?
1204 */
cristy183a5c72012-01-30 01:40:35 +00001205 if ((image->mask != MagickFalse) &&
cristy10a6c612012-01-29 21:41:05 +00001206 (LocaleNCompare("8BIM:",image->magick_filename,5) == 0))
cristy3ed852e2009-09-05 21:47:34 +00001207 (void) WriteBlobString(image,"true\n");
1208 else
1209 (void) WriteBlobString(image,"false\n");
1210 /*
1211 Showpage for non-EPS.
1212 */
1213 (void) WriteBlobString(image, LocaleCompare(image_info->magick,"PS3") == 0 ?
1214 "true\n" : "false\n");
1215 /*
1216 Image columns, rows, and color space.
1217 */
cristyb51dff52011-05-19 16:55:47 +00001218 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g %.20g\n%s\n",
cristy802d3642011-04-27 02:02:41 +00001219 (double) image->columns,(double) image->rows,image->colorspace ==
1220 CMYKColorspace ? PS3_CMYKColorspace : PS3_RGBColorspace);
cristy3ed852e2009-09-05 21:47:34 +00001221 (void) WriteBlobString(image,buffer);
1222 /*
1223 Masked image?
1224 */
1225 (void) WriteBlobString(image,image->matte != MagickFalse ?
1226 "true\n" : "false\n");
1227 /*
1228 Render with imagemask operator?
1229 */
1230 option=GetImageOption(image_info,"ps3:imagemask");
1231 (void) WriteBlobString(image,((option != (const char *) NULL) &&
cristy1e178e72011-08-28 19:44:34 +00001232 (IsImageMonochrome(image,exception) != MagickFalse)) ?
cristy3ed852e2009-09-05 21:47:34 +00001233 "true\n" : "false\n");
1234 /*
1235 Output pixel data.
1236 */
1237 pixels=(unsigned char *) NULL;
1238 length=0;
1239 if ((image_info->type != TrueColorType) &&
1240 (image_info->type != TrueColorMatteType) &&
1241 (image_info->type != ColorSeparationType) &&
1242 (image_info->type != ColorSeparationMatteType) &&
1243 (image->colorspace != CMYKColorspace) &&
cristy1e178e72011-08-28 19:44:34 +00001244 ((IsImageGray(image,exception) != MagickFalse) ||
1245 (IsImageMonochrome(image,exception) != MagickFalse)))
cristy3ed852e2009-09-05 21:47:34 +00001246 {
1247 /*
1248 Gray images.
1249 */
1250 (void) WriteBlobString(image,PS3_PseudoClass"\n");
1251 switch (compression)
1252 {
1253 case NoCompression:
1254 default:
1255 {
1256 (void) WriteBlobString(image,PS3_NoCompression"\n");
1257 break;
1258 }
1259 case FaxCompression:
1260 case Group4Compression:
1261 {
1262 (void) WriteBlobString(image,PS3_FaxCompression"\n");
1263 break;
1264 }
1265 case JPEGCompression:
1266 {
1267 (void) WriteBlobString(image,PS3_JPEGCompression"\n");
1268 break;
1269 }
1270 case LZWCompression:
1271 {
1272 (void) WriteBlobString(image,PS3_LZWCompression"\n");
1273 break;
1274 }
1275 case RLECompression:
1276 {
1277 (void) WriteBlobString(image,PS3_RLECompression"\n");
1278 break;
1279 }
1280 case ZipCompression:
1281 {
1282 (void) WriteBlobString(image,PS3_ZipCompression"\n");
1283 break;
1284 }
1285 }
1286 /*
1287 Number of colors -- 0 for single component non-color mapped data.
1288 */
1289 (void) WriteBlobString(image,"0\n");
1290 /*
1291 1 bit or 8 bit components?
1292 */
cristyb51dff52011-05-19 16:55:47 +00001293 (void) FormatLocaleString(buffer,MaxTextExtent,"%d\n",
cristy1e178e72011-08-28 19:44:34 +00001294 IsImageMonochrome(image,exception) != MagickFalse ? 1 : 8);
cristy3ed852e2009-09-05 21:47:34 +00001295 (void) WriteBlobString(image,buffer);
1296 /*
1297 Image data.
1298 */
1299 if (compression == JPEGCompression)
cristy1e178e72011-08-28 19:44:34 +00001300 status=InjectImageBlob(image_info,image,image,"jpeg",exception);
cristy3ed852e2009-09-05 21:47:34 +00001301 else
1302 if ((compression == FaxCompression) ||
1303 (compression == Group4Compression))
1304 {
1305 if (LocaleCompare(CCITTParam,"0") == 0)
cristy018f07f2011-09-04 21:15:19 +00001306 status=HuffmanEncodeImage(image_info,image,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00001307 else
cristy018f07f2011-09-04 21:15:19 +00001308 status=Huffman2DEncodeImage(image_info,image,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00001309 }
1310 else
1311 {
cristy018f07f2011-09-04 21:15:19 +00001312 status=SerializeImageChannel(image_info,image,&pixels,&length,
1313 exception);
cristy3ed852e2009-09-05 21:47:34 +00001314 if (status == MagickFalse)
1315 {
1316 (void) CloseBlob(image);
1317 return(MagickFalse);
1318 }
1319 switch (compression)
1320 {
1321 case NoCompression:
1322 default:
1323 {
1324 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +00001325 for (i=0; i < (ssize_t) length; i++)
cristy3ed852e2009-09-05 21:47:34 +00001326 Ascii85Encode(image,pixels[i]);
1327 Ascii85Flush(image);
1328 status=MagickTrue;
1329 break;
1330 }
1331 case LZWCompression:
1332 {
cristy018f07f2011-09-04 21:15:19 +00001333 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001334 break;
1335 }
1336 case RLECompression:
1337 {
cristy018f07f2011-09-04 21:15:19 +00001338 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001339 break;
1340 }
1341 case ZipCompression:
1342 {
cristy018f07f2011-09-04 21:15:19 +00001343 status=ZLIBEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001344 break;
1345 }
1346 }
1347 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
1348 }
1349 }
1350 else
1351 if ((image->storage_class == DirectClass) || (image->colors > 256) ||
1352 (compression == JPEGCompression))
1353 {
1354 /*
1355 Truecolor image.
1356 */
1357 (void) WriteBlobString(image,PS3_DirectClass"\n");
1358 switch (compression)
1359 {
1360 case NoCompression:
1361 default:
1362 {
1363 (void) WriteBlobString(image,PS3_NoCompression"\n");
1364 break;
1365 }
1366 case RLECompression:
1367 {
1368 (void) WriteBlobString(image,PS3_RLECompression"\n");
1369 break;
1370 }
1371 case JPEGCompression:
1372 {
1373 (void) WriteBlobString(image,PS3_JPEGCompression"\n");
1374 break;
1375 }
1376 case LZWCompression:
1377 {
1378 (void) WriteBlobString(image,PS3_LZWCompression"\n");
1379 break;
1380 }
1381 case ZipCompression:
1382 {
1383 (void) WriteBlobString(image,PS3_ZipCompression"\n");
1384 break;
1385 }
1386 }
1387 /*
1388 Image data.
1389 */
1390 if (compression == JPEGCompression)
cristy1e178e72011-08-28 19:44:34 +00001391 status=InjectImageBlob(image_info,image,image,"jpeg",exception);
cristy3ed852e2009-09-05 21:47:34 +00001392 else
1393 {
1394 /*
1395 Stream based compressions.
1396 */
cristy018f07f2011-09-04 21:15:19 +00001397 status=SerializeImage(image_info,image,&pixels,&length,exception);
cristy3ed852e2009-09-05 21:47:34 +00001398 if (status == MagickFalse)
1399 {
1400 (void) CloseBlob(image);
1401 return(MagickFalse);
1402 }
1403 switch (compression)
1404 {
1405 case NoCompression:
1406 default:
1407 {
1408 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +00001409 for (i=0; i < (ssize_t) length; i++)
cristy3ed852e2009-09-05 21:47:34 +00001410 Ascii85Encode(image,pixels[i]);
1411 Ascii85Flush(image);
1412 status=MagickTrue;
1413 break;
1414 }
1415 case RLECompression:
1416 {
cristy018f07f2011-09-04 21:15:19 +00001417 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001418 break;
1419 }
1420 case LZWCompression:
1421 {
cristy018f07f2011-09-04 21:15:19 +00001422 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001423 break;
1424 }
1425 case ZipCompression:
1426 {
cristy018f07f2011-09-04 21:15:19 +00001427 status=ZLIBEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001428 break;
1429 }
1430 }
1431 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
1432 }
1433 }
1434 else
1435 {
1436 /*
1437 Colormapped images.
1438 */
1439 (void) WriteBlobString(image,PS3_PseudoClass"\n");
1440 switch (compression)
1441 {
1442 case NoCompression:
1443 default:
1444 {
1445 (void) WriteBlobString(image,PS3_NoCompression"\n");
1446 break;
1447 }
1448 case JPEGCompression:
1449 {
1450 (void) WriteBlobString(image,PS3_JPEGCompression"\n");
1451 break;
1452 }
1453 case RLECompression:
1454 {
1455 (void) WriteBlobString(image,PS3_RLECompression"\n");
1456 break;
1457 }
1458 case LZWCompression:
1459 {
1460 (void) WriteBlobString(image,PS3_LZWCompression"\n");
1461 break;
1462 }
1463 case ZipCompression:
1464 {
1465 (void) WriteBlobString(image,PS3_ZipCompression"\n");
1466 break;
1467 }
1468 }
1469 /*
1470 Number of colors in color map.
1471 */
cristyb51dff52011-05-19 16:55:47 +00001472 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g\n",
cristye8c25f92010-06-03 00:53:06 +00001473 (double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +00001474 (void) WriteBlobString(image,buffer);
1475 /*
1476 Color map - uncompressed.
1477 */
1478 if ((compression != NoCompression) &&
1479 (compression != UndefinedCompression))
1480 {
cristybb503372010-05-27 20:51:26 +00001481 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00001482 {
1483 pixel=ScaleQuantumToChar(image->colormap[i].red);
1484 (void) WriteBlobByte(image,(unsigned char) pixel);
1485 pixel=ScaleQuantumToChar(image->colormap[i].green);
1486 (void) WriteBlobByte(image,(unsigned char) pixel);
1487 pixel=ScaleQuantumToChar(image->colormap[i].blue);
1488 (void) WriteBlobByte(image,(unsigned char) pixel);
1489 }
1490 }
1491 else
1492 {
1493 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +00001494 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00001495 {
1496 pixel=ScaleQuantumToChar(image->colormap[i].red);
1497 Ascii85Encode(image,(unsigned char) pixel);
1498 pixel=ScaleQuantumToChar(image->colormap[i].green);
1499 Ascii85Encode(image,(unsigned char) pixel);
1500 pixel=ScaleQuantumToChar(image->colormap[i].blue);
1501 Ascii85Encode(image,(unsigned char) pixel);
1502 }
1503 Ascii85Flush(image);
1504 }
cristy018f07f2011-09-04 21:15:19 +00001505 status=SerializeImageIndexes(image_info,image,&pixels,&length,
1506 exception);
cristy3ed852e2009-09-05 21:47:34 +00001507 if (status == MagickFalse)
1508 {
1509 (void) CloseBlob(image);
1510 return(MagickFalse);
1511 }
1512 switch (compression)
1513 {
1514 case NoCompression:
1515 default:
1516 {
1517 Ascii85Initialize(image);
cristybb503372010-05-27 20:51:26 +00001518 for (i=0; i < (ssize_t) length; i++)
cristy3ed852e2009-09-05 21:47:34 +00001519 Ascii85Encode(image,pixels[i]);
1520 Ascii85Flush(image);
1521 status=MagickTrue;
1522 break;
1523 }
1524 case JPEGCompression:
1525 {
cristy1e178e72011-08-28 19:44:34 +00001526 status=InjectImageBlob(image_info,image,image,"jpeg",exception);
cristy3ed852e2009-09-05 21:47:34 +00001527 break;
1528 }
1529 case RLECompression:
1530 {
cristy018f07f2011-09-04 21:15:19 +00001531 status=PackbitsEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001532 break;
1533 }
1534 case LZWCompression:
1535 {
cristy018f07f2011-09-04 21:15:19 +00001536 status=LZWEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001537 break;
1538 }
1539 case ZipCompression:
1540 {
cristy018f07f2011-09-04 21:15:19 +00001541 status=ZLIBEncodeImage(image,length,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001542 break;
1543 }
1544 }
1545 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
1546 }
1547 (void) WriteBlobByte(image,'\n');
1548 if (status == MagickFalse)
1549 {
1550 (void) CloseBlob(image);
1551 return(MagickFalse);
1552 }
1553 /*
1554 Update BeginData now that we know the data size.
1555 */
1556 length=(size_t) (TellBlob(image)-stop);
1557 stop=TellBlob(image);
1558 offset=SeekBlob(image,start,SEEK_SET);
1559 if (offset < 0)
1560 ThrowWriterException(CorruptImageError,"ImproperImageHeader");
cristyb51dff52011-05-19 16:55:47 +00001561 (void) FormatLocaleString(buffer,MaxTextExtent,
cristyf2faecf2010-05-28 19:19:36 +00001562 "%%%%BeginData:%13ld %s Bytes\n",(long) length,
cristy3ed852e2009-09-05 21:47:34 +00001563 compression == NoCompression ? "ASCII" : "BINARY");
1564 (void) WriteBlobString(image,buffer);
1565 offset=SeekBlob(image,stop,SEEK_SET);
1566 (void) WriteBlobString(image,"%%EndData\n");
1567 /*
1568 End private dictionary if this an EPS.
1569 */
1570 if (LocaleCompare(image_info->magick,"PS3") != 0)
1571 (void) WriteBlobString(image,"end\n");
1572 (void) WriteBlobString(image,"%%PageTrailer\n");
1573 if (GetNextImageInList(image) == (Image *) NULL)
1574 break;
1575 image=SyncNextImageInList(image);
1576 status=SetImageProgress(image,SaveImagesTag,scene++,
1577 GetImageListLength(image));
1578 if (status == MagickFalse)
1579 break;
1580 } while (image_info->adjoin != MagickFalse);
1581 (void) WriteBlobString(image,"%%Trailer\n");
1582 if (page > 1)
1583 {
cristyb51dff52011-05-19 16:55:47 +00001584 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00001585 "%%%%BoundingBox: %g %g %g %g\n",floor(bounds.x1+0.5),
cristy3ed852e2009-09-05 21:47:34 +00001586 floor(bounds.y1+0.5),ceil(bounds.x2-0.5),ceil(bounds.y2-0.5));
1587 (void) WriteBlobString(image,buffer);
cristyb51dff52011-05-19 16:55:47 +00001588 (void) FormatLocaleString(buffer,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00001589 "%%%%HiResBoundingBox: %g %g %g %g\n",bounds.x1,bounds.y1,
cristy3ed852e2009-09-05 21:47:34 +00001590 bounds.x2,bounds.y2);
1591 (void) WriteBlobString(image,buffer);
1592 }
1593 (void) WriteBlobString(image,"%%EOF\n");
1594 (void) CloseBlob(image);
1595 return(MagickTrue);
1596}