blob: a7f85159ebdc7370fe99126ddadb5a10c21c236f [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% X X PPPP SSSSS %
7% X X P P SS %
8% X PPPP SSS %
9% X X P SS %
10% X X P SSSSS %
11% %
12% %
13% Read/Write Microsoft XML Paper Specification Format %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% January 2008 %
18% %
19% %
cristyb56bb242014-11-25 17:12:48 +000020% Copyright 1999-2015 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"
cristyc6348612013-04-05 14:24:24 +000043#include "MagickCore/artifact.h"
cristy4c08aed2011-07-01 19:47:50 +000044#include "MagickCore/blob.h"
45#include "MagickCore/blob-private.h"
46#include "MagickCore/color.h"
47#include "MagickCore/color-private.h"
48#include "MagickCore/colorspace.h"
49#include "MagickCore/constitute.h"
50#include "MagickCore/delegate.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"
cristyc689f1f2011-10-05 21:13:24 +000062#include "MagickCore/option.h"
cristy4c08aed2011-07-01 19:47:50 +000063#include "MagickCore/profile.h"
cristyc6348612013-04-05 14:24:24 +000064#include "MagickCore/property.h"
cristy4c08aed2011-07-01 19:47:50 +000065#include "MagickCore/resource_.h"
66#include "MagickCore/quantum-private.h"
67#include "MagickCore/static.h"
68#include "MagickCore/string_.h"
69#include "MagickCore/module.h"
70#include "MagickCore/token.h"
71#include "MagickCore/transform.h"
72#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000073
74/*
75%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76% %
77% %
78% %
79% R e a d X P S I m a g e %
80% %
81% %
82% %
83%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84%
85% ReadXPSImage() reads a Printer Control Language image file and returns it.
86% It allocates the memory necessary for the new Image structure and returns a
87% pointer to the new image.
88%
89% The format of the ReadXPSImage method is:
90%
91% Image *ReadXPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
92%
93% A description of each parameter follows:
94%
95% o image_info: the image info.
96%
97% o exception: return any errors or warnings in this structure.
98%
99*/
100static Image *ReadXPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
101{
102#define CropBox "CropBox"
103#define DeviceCMYK "DeviceCMYK"
104#define MediaBox "MediaBox"
105#define RenderXPSText " Rendering XPS... "
106
107 char
cristy151b66d2015-04-15 10:50:31 +0000108 command[MagickPathExtent],
cristy51816562015-04-12 13:18:38 +0000109 *density,
cristy151b66d2015-04-15 10:50:31 +0000110 filename[MagickPathExtent],
111 geometry[MagickPathExtent],
cristy51816562015-04-12 13:18:38 +0000112 *options,
cristy151b66d2015-04-15 10:50:31 +0000113 input_filename[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +0000114
anthony1afdc7a2011-10-05 11:54:28 +0000115 const char
cristyc689f1f2011-10-05 21:13:24 +0000116 *option;
anthony1afdc7a2011-10-05 11:54:28 +0000117
cristy3ed852e2009-09-05 21:47:34 +0000118 const DelegateInfo
119 *delegate_info;
120
121 Image
122 *image,
123 *next_image;
124
125 ImageInfo
126 *read_info;
127
128 MagickBooleanType
129 cmyk,
130 status;
131
132 PointInfo
133 delta;
134
135 RectangleInfo
136 bounding_box,
137 page;
138
139 register char
140 *p;
141
cristybb503372010-05-27 20:51:26 +0000142 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000143 c;
144
145 SegmentInfo
146 bounds;
147
cristybb503372010-05-27 20:51:26 +0000148 size_t
cristy3ed852e2009-09-05 21:47:34 +0000149 height,
150 width;
151
cristyc6da28e2011-04-28 01:41:35 +0000152 ssize_t
153 count;
154
cristy3ed852e2009-09-05 21:47:34 +0000155 assert(image_info != (const ImageInfo *) NULL);
156 assert(image_info->signature == MagickSignature);
157 if (image_info->debug != MagickFalse)
158 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
159 image_info->filename);
160 assert(exception != (ExceptionInfo *) NULL);
161 assert(exception->signature == MagickSignature);
162 /*
163 Open image file.
164 */
cristy9950d572011-10-01 18:22:35 +0000165 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000166 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
167 if (status == MagickFalse)
168 {
169 image=DestroyImageList(image);
170 return((Image *) NULL);
171 }
172 status=AcquireUniqueSymbolicLink(image_info->filename,input_filename);
173 if (status == MagickFalse)
174 {
175 ThrowFileException(exception,FileOpenError,"UnableToCreateTemporaryFile",
176 image_info->filename);
177 image=DestroyImageList(image);
178 return((Image *) NULL);
179 }
180 /*
181 Set the page density.
182 */
183 delta.x=DefaultResolution;
184 delta.y=DefaultResolution;
cristy2a11bef2011-10-28 18:33:11 +0000185 if ((image->resolution.x == 0.0) || (image->resolution.y == 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000186 {
187 GeometryInfo
188 geometry_info;
189
190 MagickStatusType
191 flags;
192
193 flags=ParseGeometry(PSDensityGeometry,&geometry_info);
cristy2a11bef2011-10-28 18:33:11 +0000194 image->resolution.x=geometry_info.rho;
195 image->resolution.y=geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +0000196 if ((flags & SigmaValue) == 0)
cristy2a11bef2011-10-28 18:33:11 +0000197 image->resolution.y=image->resolution.x;
cristy3ed852e2009-09-05 21:47:34 +0000198 }
cristy3ed852e2009-09-05 21:47:34 +0000199 /*
200 Determine page geometry from the XPS media box.
201 */
202 cmyk=image->colorspace == CMYKColorspace ? MagickTrue : MagickFalse;
203 count=0;
204 (void) ResetMagickMemory(&bounding_box,0,sizeof(bounding_box));
205 (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
206 (void) ResetMagickMemory(&page,0,sizeof(page));
207 (void) ResetMagickMemory(command,0,sizeof(command));
208 p=command;
209 for (c=ReadBlobByte(image); c != EOF; c=ReadBlobByte(image))
210 {
211 if (image_info->page != (char *) NULL)
212 continue;
213 /*
214 Note XPS elements.
215 */
216 *p++=(char) c;
217 if ((c != (int) '/') && (c != '\n') &&
cristy151b66d2015-04-15 10:50:31 +0000218 ((size_t) (p-command) < (MagickPathExtent-1)))
cristy3ed852e2009-09-05 21:47:34 +0000219 continue;
220 *p='\0';
221 p=command;
222 /*
223 Is this a CMYK document?
224 */
225 if (LocaleNCompare(DeviceCMYK,command,strlen(DeviceCMYK)) == 0)
226 cmyk=MagickTrue;
227 if (LocaleNCompare(CropBox,command,strlen(CropBox)) == 0)
228 {
229 /*
230 Note region defined by crop box.
231 */
232 count=(ssize_t) sscanf(command,"CropBox [%lf %lf %lf %lf",
233 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
234 if (count != 4)
235 count=(ssize_t) sscanf(command,"CropBox[%lf %lf %lf %lf",
236 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
237 }
238 if (LocaleNCompare(MediaBox,command,strlen(MediaBox)) == 0)
239 {
240 /*
241 Note region defined by media box.
242 */
243 count=(ssize_t) sscanf(command,"MediaBox [%lf %lf %lf %lf",
244 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
245 if (count != 4)
246 count=(ssize_t) sscanf(command,"MediaBox[%lf %lf %lf %lf",
247 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
248 }
249 if (count != 4)
250 continue;
251 /*
252 Set XPS render geometry.
253 */
cristy8071c472012-09-24 12:41:06 +0000254 width=(size_t) (floor(bounds.x2+0.5)-ceil(bounds.x1-0.5));
255 height=(size_t) (floor(bounds.y2+0.5)-ceil(bounds.y1-0.5));
cristy3ed852e2009-09-05 21:47:34 +0000256 if (width > page.width)
257 page.width=width;
258 if (height > page.height)
259 page.height=height;
260 }
261 (void) CloseBlob(image);
262 /*
263 Render XPS with the GhostXPS delegate.
264 */
265 if ((page.width == 0) || (page.height == 0))
266 (void) ParseAbsoluteGeometry(PSPageGeometry,&page);
267 if (image_info->page != (char *) NULL)
268 (void) ParseAbsoluteGeometry(image_info->page,&page);
cristy151b66d2015-04-15 10:50:31 +0000269 (void) FormatLocaleString(geometry,MagickPathExtent,"%.20gx%.20g",(double)
cristye8c25f92010-06-03 00:53:06 +0000270 page.width,(double) page.height);
cristy3ed852e2009-09-05 21:47:34 +0000271 if (image_info->monochrome != MagickFalse)
272 delegate_info=GetDelegateInfo("xps:mono",(char *) NULL,exception);
273 else
274 if (cmyk != MagickFalse)
275 delegate_info=GetDelegateInfo("xps:cmyk",(char *) NULL,exception);
276 else
277 delegate_info=GetDelegateInfo("xps:color",(char *) NULL,exception);
278 if (delegate_info == (const DelegateInfo *) NULL)
279 return((Image *) NULL);
cristy51816562015-04-12 13:18:38 +0000280 density=AcquireString("");
281 options=AcquireString("");
cristy151b66d2015-04-15 10:50:31 +0000282 (void) FormatLocaleString(density,MagickPathExtent,"%gx%g",
cristy51816562015-04-12 13:18:38 +0000283 image->resolution.x,image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000284 if ((page.width == 0) || (page.height == 0))
285 (void) ParseAbsoluteGeometry(PSPageGeometry,&page);
286 if (image_info->page != (char *) NULL)
287 (void) ParseAbsoluteGeometry(image_info->page,&page);
cristy2a11bef2011-10-28 18:33:11 +0000288 page.width=(size_t) floor(page.width*image->resolution.y/delta.x+0.5);
cristye4cc1a12012-09-03 23:04:46 +0000289 page.height=(size_t) floor(page.height*image->resolution.y/delta.y+0.5);
cristy151b66d2015-04-15 10:50:31 +0000290 (void) FormatLocaleString(options,MagickPathExtent,"-g%.20gx%.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000291 page.width,(double) page.height);
cristy3ed852e2009-09-05 21:47:34 +0000292 image=DestroyImage(image);
293 read_info=CloneImageInfo(image_info);
294 *read_info->magick='\0';
295 if (read_info->number_scenes != 0)
296 {
297 if (read_info->number_scenes != 1)
cristy151b66d2015-04-15 10:50:31 +0000298 (void) FormatLocaleString(options,MagickPathExtent,"-dLastPage=%.20g",
cristye8c25f92010-06-03 00:53:06 +0000299 (double) (read_info->scene+read_info->number_scenes));
cristy3ed852e2009-09-05 21:47:34 +0000300 else
cristy151b66d2015-04-15 10:50:31 +0000301 (void) FormatLocaleString(options,MagickPathExtent,
cristye8c25f92010-06-03 00:53:06 +0000302 "-dFirstPage=%.20g -dLastPage=%.20g",(double) read_info->scene+1,
303 (double) (read_info->scene+read_info->number_scenes));
cristy3ed852e2009-09-05 21:47:34 +0000304 read_info->number_scenes=0;
305 if (read_info->scenes != (char *) NULL)
306 *read_info->scenes='\0';
307 }
cristy092ec8d2013-04-26 13:46:22 +0000308 option=GetImageOption(image_info,"authenticate");
anthony1afdc7a2011-10-05 11:54:28 +0000309 if (option != (const char *) NULL)
cristy151b66d2015-04-15 10:50:31 +0000310 (void) FormatLocaleString(options+strlen(options),MagickPathExtent,
anthony1afdc7a2011-10-05 11:54:28 +0000311 " -sPCLPassword=%s",option);
cristy151b66d2015-04-15 10:50:31 +0000312 (void) CopyMagickString(filename,read_info->filename,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000313 (void) AcquireUniqueFilename(read_info->filename);
cristy151b66d2015-04-15 10:50:31 +0000314 (void) FormatLocaleString(command,MagickPathExtent,
cristy3ed852e2009-09-05 21:47:34 +0000315 GetDelegateCommands(delegate_info),
316 read_info->antialias != MagickFalse ? 4 : 1,
317 read_info->antialias != MagickFalse ? 4 : 1,density,options,
318 read_info->filename,input_filename);
cristy51816562015-04-12 13:18:38 +0000319 options=DestroyString(options);
320 density=DestroyString(density);
cristydfc19b62014-10-17 22:52:24 +0000321 status=ExternalDelegateCommand(MagickFalse,read_info->verbose,command,
322 (char *) NULL,exception) != 0 ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +0000323 image=ReadImage(read_info,exception);
324 (void) RelinquishUniqueFileResource(read_info->filename);
325 (void) RelinquishUniqueFileResource(input_filename);
326 read_info=DestroyImageInfo(read_info);
327 if (image == (Image *) NULL)
328 ThrowReaderException(DelegateError,"XPSDelegateFailed");
329 if (LocaleCompare(image->magick,"BMP") == 0)
330 {
331 Image
332 *cmyk_image;
333
cristyc82a27b2011-10-21 01:07:16 +0000334 cmyk_image=ConsolidateCMYKImages(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000335 if (cmyk_image != (Image *) NULL)
336 {
337 image=DestroyImageList(image);
338 image=cmyk_image;
339 }
340 }
341 do
342 {
cristy151b66d2015-04-15 10:50:31 +0000343 (void) CopyMagickString(image->filename,filename,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000344 image->page=page;
345 next_image=SyncNextImageInList(image);
346 if (next_image != (Image *) NULL)
347 image=next_image;
348 } while (next_image != (Image *) NULL);
349 return(GetFirstImageInList(image));
350}
351
352/*
353%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
354% %
355% %
356% %
357% R e g i s t e r X P S I m a g e %
358% %
359% %
360% %
361%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
362%
363% RegisterXPSImage() adds attributes for the Microsoft XML Paper Specification
364% format to the list of supported formats. The attributes include the image
365% format tag, a method to read and/or write the format, whether the format
366% supports the saving of more than one frame to the same file or blob,
367% whether the format supports native in-memory I/O, and a brief
368% description of the format.
369%
370% The format of the RegisterXPSImage method is:
371%
cristybb503372010-05-27 20:51:26 +0000372% size_t RegisterXPSImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000373%
374*/
cristybb503372010-05-27 20:51:26 +0000375ModuleExport size_t RegisterXPSImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000376{
377 MagickInfo
378 *entry;
379
dirk06b627a2015-04-06 18:59:17 +0000380 entry=AcquireMagickInfo("XPS","XPS","Microsoft XML Paper Specification");
cristy3ed852e2009-09-05 21:47:34 +0000381 entry->decoder=(DecodeImageHandler *) ReadXPSImage;
dirk08e9a112015-02-22 01:51:41 +0000382 entry->flags^=CoderAdjoinFlag;
383 entry->flags^=CoderBlobSupportFlag;
384 entry->flags^=CoderDecoderThreadSupportFlag;
385 entry->flags|=CoderSeekableStreamFlag;
cristy3ed852e2009-09-05 21:47:34 +0000386 (void) RegisterMagickInfo(entry);
387 return(MagickImageCoderSignature);
388}
389
390/*
391%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
392% %
393% %
394% %
395% U n r e g i s t e r X P S I m a g e %
396% %
397% %
398% %
399%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
400%
401% UnregisterXPSImage() removes format registrations made by the XPS module
402% from the list of supported formats.
403%
404% The format of the UnregisterXPSImage method is:
405%
406% UnregisterXPSImage(void)
407%
408*/
409ModuleExport void UnregisterXPSImage(void)
410{
411 (void) UnregisterMagickInfo("XPS");
412}