blob: cd6b7ad1c59589bf92804cbe9086926292e8bba8 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% M M V V GGGG %
7% MM MM V V G %
8% M M M V V G GG %
9% M M V V G G %
10% M M V GGG %
11% %
12% %
13% Read/Write Magick Vector Graphics Metafiles. %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% April 2000 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 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/artifact.h"
44#include "MagickCore/blob.h"
45#include "MagickCore/blob-private.h"
46#include "MagickCore/draw.h"
47#include "MagickCore/exception.h"
48#include "MagickCore/exception-private.h"
49#include "MagickCore/image.h"
50#include "MagickCore/image-private.h"
51#include "MagickCore/list.h"
52#include "MagickCore/magick.h"
53#include "MagickCore/memory_.h"
54#include "MagickCore/module.h"
55#include "MagickCore/property.h"
56#include "MagickCore/quantum-private.h"
57#include "MagickCore/static.h"
58#include "MagickCore/string_.h"
cristy3ed852e2009-09-05 21:47:34 +000059
60/*
61 Forward declarations.
62*/
63static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000064 WriteMVGImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000065
66/*
67%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
68% %
69% %
70% %
71% I s M V G %
72% %
73% %
74% %
75%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76%
77% IsMVG() returns MagickTrue if the image format type, identified by the
78% magick string, is MVG.
79%
80% The format of the IsMVG method is:
81%
82% MagickBooleanType IsMVG(const unsigned char *magick,const size_t length)
83%
84% A description of each parameter follows:
85%
86% o magick: compare image format pattern against these bytes.
87%
88% o length: Specifies the length of the magick string.
89%
90*/
91static MagickBooleanType IsMVG(const unsigned char *magick,const size_t length)
92{
93 if (length < 20)
94 return(MagickFalse);
95 if (LocaleNCompare((const char *) magick,"push graphic-context",20) == 0)
96 return(MagickTrue);
97 return(MagickFalse);
98}
99
100/*
101%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
102% %
103% %
104% %
105% R e a d M V G I m a g e %
106% %
107% %
108% %
109%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
110%
111% ReadMVGImage creates a gradient image and initializes it to
112% the X server color range as specified by the filename. It allocates the
113% memory necessary for the new Image structure and returns a pointer to the
114% new image.
115%
116% The format of the ReadMVGImage method is:
117%
118% Image *ReadMVGImage(const ImageInfo *image_info,ExceptionInfo *exception)
119%
120% A description of each parameter follows:
121%
122% o image_info: the image info.
123%
124% o exception: return any errors or warnings in this structure.
125%
126*/
127static Image *ReadMVGImage(const ImageInfo *image_info,ExceptionInfo *exception)
128{
129#define BoundingBox "viewbox"
130
131 DrawInfo
132 *draw_info;
133
134 Image
135 *image;
136
137 MagickBooleanType
138 status;
139
140 /*
141 Open image.
142 */
143 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000144 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000145 if (image_info->debug != MagickFalse)
146 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
147 image_info->filename);
148 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000149 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000150 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000151 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
152 if (status == MagickFalse)
153 {
154 image=DestroyImageList(image);
155 return((Image *) NULL);
156 }
157 if ((image->columns == 0) || (image->rows == 0))
158 {
159 char
cristy151b66d2015-04-15 10:50:31 +0000160 primitive[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +0000161
162 register char
163 *p;
164
165 SegmentInfo
166 bounds;
167
168 /*
169 Determine size of image canvas.
170 */
171 while (ReadBlobString(image,primitive) != (char *) NULL)
172 {
173 for (p=primitive; (*p == ' ') || (*p == '\t'); p++) ;
174 if (LocaleNCompare(BoundingBox,p,strlen(BoundingBox)) != 0)
175 continue;
176 (void) sscanf(p,"viewbox %lf %lf %lf %lf",&bounds.x1,&bounds.y1,
177 &bounds.x2,&bounds.y2);
cristybb503372010-05-27 20:51:26 +0000178 image->columns=(size_t) floor((bounds.x2-bounds.x1)+0.5);
179 image->rows=(size_t) floor((bounds.y2-bounds.y1)+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000180 break;
181 }
182 }
183 if ((image->columns == 0) || (image->rows == 0))
184 ThrowReaderException(OptionError,"MustSpecifyImageSize");
185 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);
cristy2a11bef2011-10-28 18:33:11 +0000186 draw_info->affine.sx=image->resolution.x == 0.0 ? 1.0 : image->resolution.x/
cristy3ed852e2009-09-05 21:47:34 +0000187 DefaultResolution;
cristy2a11bef2011-10-28 18:33:11 +0000188 draw_info->affine.sy=image->resolution.y == 0.0 ? 1.0 : image->resolution.y/
cristy3ed852e2009-09-05 21:47:34 +0000189 DefaultResolution;
cristybb503372010-05-27 20:51:26 +0000190 image->columns=(size_t) (draw_info->affine.sx*image->columns);
191 image->rows=(size_t) (draw_info->affine.sy*image->rows);
cristyacabb842014-12-14 23:36:33 +0000192 status=SetImageExtent(image,image->columns,image->rows,exception);
193 if (status == MagickFalse)
194 return(DestroyImageList(image));
cristyea1a8aa2011-10-20 13:24:06 +0000195 if (SetImageBackgroundColor(image,exception) == MagickFalse)
cristy95524f92010-02-16 18:44:34 +0000196 {
cristy95524f92010-02-16 18:44:34 +0000197 image=DestroyImageList(image);
198 return((Image *) NULL);
199 }
cristy3ed852e2009-09-05 21:47:34 +0000200 /*
201 Render drawing.
202 */
203 if (GetBlobStreamData(image) == (unsigned char *) NULL)
204 draw_info->primitive=FileToString(image->filename,~0UL,exception);
205 else
206 {
207 draw_info->primitive=(char *) AcquireMagickMemory(GetBlobSize(image)+1);
208 if (draw_info->primitive != (char *) NULL)
209 {
210 CopyMagickMemory(draw_info->primitive,GetBlobStreamData(image),
211 GetBlobSize(image));
212 draw_info->primitive[GetBlobSize(image)]='\0';
213 }
214 }
cristy018f07f2011-09-04 21:15:19 +0000215 (void) DrawImage(image,draw_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000216 draw_info=DestroyDrawInfo(draw_info);
217 (void) CloseBlob(image);
218 return(GetFirstImageInList(image));
219}
220
221/*
222%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223% %
224% %
225% %
226% R e g i s t e r M V G I m a g e %
227% %
228% %
229% %
230%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
231%
232% RegisterMVGImage() adds properties for the MVG image format
233% to the list of supported formats. The properties include the image format
234% tag, a method to read and/or write the format, whether the format
235% supports the saving of more than one frame to the same file or blob,
236% whether the format supports native in-memory I/O, and a brief
237% description of the format.
238%
239% The format of the RegisterMVGImage method is:
240%
cristybb503372010-05-27 20:51:26 +0000241% size_t RegisterMVGImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000242%
243*/
cristybb503372010-05-27 20:51:26 +0000244ModuleExport size_t RegisterMVGImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000245{
246 MagickInfo
247 *entry;
248
dirk06b627a2015-04-06 18:59:17 +0000249 entry=AcquireMagickInfo("MVG","MVG","Magick Vector Graphics");
cristy3ed852e2009-09-05 21:47:34 +0000250 entry->decoder=(DecodeImageHandler *) ReadMVGImage;
251 entry->encoder=(EncodeImageHandler *) WriteMVGImage;
252 entry->magick=(IsImageFormatHandler *) IsMVG;
dirk08e9a112015-02-22 01:51:41 +0000253 entry->flags^=CoderAdjoinFlag;
254 entry->flags|=CoderSeekableStreamFlag;
cristy3ed852e2009-09-05 21:47:34 +0000255 (void) RegisterMagickInfo(entry);
256 return(MagickImageCoderSignature);
257}
258
259/*
260%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
261% %
262% %
263% %
264% U n r e g i s t e r M V G I m a g e %
265% %
266% %
267% %
268%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
269%
270% UnregisterMVGImage() removes format registrations made by the
271% MVG module from the list of supported formats.
272%
273% The format of the UnregisterMVGImage method is:
274%
275% UnregisterMVGImage(void)
276%
277*/
278ModuleExport void UnregisterMVGImage(void)
279{
280 (void) UnregisterMagickInfo("MVG");
281}
282
283/*
284%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
285% %
286% %
287% %
288% W r i t e M V G I m a g e %
289% %
290% %
291% %
292%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
293%
294% WriteMVGImage() writes an image to a file in MVG image format.
295%
296% The format of the WriteMVGImage method is:
297%
cristy1e178e72011-08-28 19:44:34 +0000298% MagickBooleanType WriteMVGImage(const ImageInfo *image_info,
299% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000300%
301% A description of each parameter follows.
302%
303% o image_info: the image info.
304%
305% o image: The image.
306%
cristy1e178e72011-08-28 19:44:34 +0000307% o exception: return any errors or warnings in this structure.
308%
cristy3ed852e2009-09-05 21:47:34 +0000309*/
cristy1e178e72011-08-28 19:44:34 +0000310static MagickBooleanType WriteMVGImage(const ImageInfo *image_info,Image *image,
311 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000312{
313 const char
314 *value;
315
316 MagickBooleanType
317 status;
318
319 /*
320 Open output image file.
321 */
322 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000323 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000324 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000325 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000326 if (image->debug != MagickFalse)
327 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
328 value=GetImageArtifact(image,"MVG");
329 if (value == (const char *) NULL)
330 ThrowWriterException(OptionError,"NoImageVectorGraphics");
cristy1e178e72011-08-28 19:44:34 +0000331 status=OpenBlob(image_info,image,WriteBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000332 if (status == MagickFalse)
333 return(status);
334 (void) WriteBlob(image,strlen(value),(const unsigned char *) value);
335 (void) CloseBlob(image);
336 return(MagickTrue);
337}