blob: 031e86c659ec46d84c154cc1baa6d69d494b9099 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% CCCC AAA PPPP TTTTT IIIII OOO N N %
7% C A A P P T I O O NN N %
8% C AAAAA PPPP T I O O N N N %
9% C A A P T I O O N NN %
10% CCCC A A P T IIIII OOO N N %
11% %
12% %
13% Read Text Caption. %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% February 2002 %
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/annotate.h"
cristy76ce6e12013-04-05 14:33:38 +000044#include "MagickCore/artifact.h"
cristy4c08aed2011-07-01 19:47:50 +000045#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
cristy8a3ce7f2011-10-30 02:28:03 +000047#include "MagickCore/composite-private.h"
cristy4c08aed2011-07-01 19:47:50 +000048#include "MagickCore/draw.h"
cristy8a3ce7f2011-10-30 02:28:03 +000049#include "MagickCore/draw-private.h"
cristy4c08aed2011-07-01 19:47:50 +000050#include "MagickCore/exception.h"
51#include "MagickCore/exception-private.h"
52#include "MagickCore/image.h"
53#include "MagickCore/image-private.h"
54#include "MagickCore/list.h"
55#include "MagickCore/magick.h"
56#include "MagickCore/memory_.h"
cristy8a3ce7f2011-10-30 02:28:03 +000057#include "MagickCore/module.h"
cristy4c08aed2011-07-01 19:47:50 +000058#include "MagickCore/option.h"
59#include "MagickCore/property.h"
60#include "MagickCore/quantum-private.h"
61#include "MagickCore/static.h"
62#include "MagickCore/string_.h"
cristy8a3ce7f2011-10-30 02:28:03 +000063#include "MagickCore/string-private.h"
64#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000065
66/*
67%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
68% %
69% %
70% %
71% R e a d C A P T I O N I m a g e %
72% %
73% %
74% %
75%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76%
77% ReadCAPTIONImage() reads a CAPTION image file and returns it. It
78% allocates the memory necessary for the new Image structure and returns a
79% pointer to the new image.
80%
81% The format of the ReadCAPTIONImage method is:
82%
83% Image *ReadCAPTIONImage(const ImageInfo *image_info,
84% ExceptionInfo *exception)
85%
86% A description of each parameter follows:
87%
88% o image_info: the image info.
89%
90% o exception: return any errors or warnings in this structure.
91%
92*/
93static Image *ReadCAPTIONImage(const ImageInfo *image_info,
94 ExceptionInfo *exception)
95{
96 char
97 *caption,
cristy151b66d2015-04-15 10:50:31 +000098 geometry[MagickPathExtent],
cristy54ec4272013-03-14 14:24:14 +000099 *property,
100 *text;
cristy3ed852e2009-09-05 21:47:34 +0000101
102 const char
cristyab272ac2012-03-04 22:08:07 +0000103 *gravity,
104 *option;
cristy3ed852e2009-09-05 21:47:34 +0000105
106 DrawInfo
107 *draw_info;
108
109 Image
110 *image;
111
112 MagickBooleanType
cristya5302732013-05-30 22:26:58 +0000113 split,
cristy3ed852e2009-09-05 21:47:34 +0000114 status;
115
cristybb503372010-05-27 20:51:26 +0000116 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000117 i;
118
cristybb503372010-05-27 20:51:26 +0000119 size_t
cristy3ed852e2009-09-05 21:47:34 +0000120 height,
121 width;
122
cristy4e82e512011-04-24 01:33:42 +0000123 TypeMetric
124 metrics;
125
cristy3ed852e2009-09-05 21:47:34 +0000126 /*
127 Initialize Image structure.
128 */
129 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000130 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000131 if (image_info->debug != MagickFalse)
132 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
133 image_info->filename);
134 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000135 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000136 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000137 (void) ResetImagePage(image,"0x0+0+0");
138 /*
139 Format caption.
140 */
cristy092ec8d2013-04-26 13:46:22 +0000141 option=GetImageOption(image_info,"filename");
cristyab272ac2012-03-04 22:08:07 +0000142 if (option == (const char *) NULL)
cristye67f43f2013-04-29 10:27:50 +0000143 property=InterpretImageProperties((ImageInfo *) image_info,image,
144 image_info->filename,exception);
cristyab272ac2012-03-04 22:08:07 +0000145 else
146 if (LocaleNCompare(option,"caption:",8) == 0)
cristye67f43f2013-04-29 10:27:50 +0000147 property=InterpretImageProperties((ImageInfo *) image_info,image,option+8,
148 exception);
cristyab272ac2012-03-04 22:08:07 +0000149 else
cristye67f43f2013-04-29 10:27:50 +0000150 property=InterpretImageProperties((ImageInfo *) image_info,image,option,
151 exception);
cristyd15e6592011-10-15 00:13:06 +0000152 (void) SetImageProperty(image,"caption",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000153 property=DestroyString(property);
cristyd15e6592011-10-15 00:13:06 +0000154 caption=ConstantString(GetImageProperty(image,"caption",exception));
cristy3ed852e2009-09-05 21:47:34 +0000155 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);
cristy6fc39292011-10-23 14:26:30 +0000156 (void) CloneString(&draw_info->text,caption);
cristy092ec8d2013-04-26 13:46:22 +0000157 gravity=GetImageOption(image_info,"gravity");
cristy3ed852e2009-09-05 21:47:34 +0000158 if (gravity != (char *) NULL)
cristy042ee782011-04-22 18:48:30 +0000159 draw_info->gravity=(GravityType) ParseCommandOption(MagickGravityOptions,
cristy3ed852e2009-09-05 21:47:34 +0000160 MagickFalse,gravity);
cristya5302732013-05-30 22:26:58 +0000161 split=MagickFalse;
cristy8db9ca42013-03-14 13:35:37 +0000162 if (image->columns == 0)
163 {
cristye275ada2013-04-14 22:29:40 +0000164 text=AcquireString(caption);
cristya5302732013-05-30 22:26:58 +0000165 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
cristye275ada2013-04-14 22:29:40 +0000166 exception);
167 (void) CloneString(&draw_info->text,text);
168 text=DestroyString(text);
cristy151b66d2015-04-15 10:50:31 +0000169 (void) FormatLocaleString(geometry,MagickPathExtent,"%+g%+g",
cristyb05c5342015-02-19 16:01:46 +0000170 -metrics.bounds.x1,metrics.ascent);
cristye275ada2013-04-14 22:29:40 +0000171 if (draw_info->gravity == UndefinedGravity)
172 (void) CloneString(&draw_info->geometry,geometry);
cristyb712c6e2013-04-14 21:43:41 +0000173 status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception);
cristya4925932013-04-14 21:14:20 +0000174 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
cristy8db9ca42013-03-14 13:35:37 +0000175 image->columns=width;
176 }
177 if (image->rows == 0)
178 {
cristya5302732013-05-30 22:26:58 +0000179 split=MagickTrue;
cristye275ada2013-04-14 22:29:40 +0000180 text=AcquireString(caption);
cristya5302732013-05-30 22:26:58 +0000181 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
cristye275ada2013-04-14 22:29:40 +0000182 exception);
183 (void) CloneString(&draw_info->text,text);
184 text=DestroyString(text);
cristy151b66d2015-04-15 10:50:31 +0000185 (void) FormatLocaleString(geometry,MagickPathExtent,"%+g%+g",
cristyb05c5342015-02-19 16:01:46 +0000186 -metrics.bounds.x1,metrics.ascent);
cristye275ada2013-04-14 22:29:40 +0000187 if (draw_info->gravity == UndefinedGravity)
188 (void) CloneString(&draw_info->geometry,geometry);
cristya4925932013-04-14 21:14:20 +0000189 status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception);
cristyb05c5342015-02-19 16:01:46 +0000190 image->rows=(size_t) ((i+1)*(metrics.ascent-metrics.descent+
cristy54ec4272013-03-14 14:24:14 +0000191 draw_info->interline_spacing+draw_info->stroke_width)+0.5);
cristy8db9ca42013-03-14 13:35:37 +0000192 }
cristy176d1cd2015-02-20 17:44:44 +0000193 status=SetImageExtent(image,image->columns,image->rows,exception);
194 if (status == MagickFalse)
195 {
196 draw_info=DestroyDrawInfo(draw_info);
197 return(DestroyImageList(image));
198 }
199 if (SetImageBackgroundColor(image,exception) == MagickFalse)
200 {
201 draw_info=DestroyDrawInfo(draw_info);
202 image=DestroyImageList(image);
203 return((Image *) NULL);
204 }
cristya4925932013-04-14 21:14:20 +0000205 if (fabs(image_info->pointsize) < MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +0000206 {
cristybdf24b22012-05-24 12:20:45 +0000207 double
208 high,
209 low;
210
cristy3ed852e2009-09-05 21:47:34 +0000211 /*
cristybdf24b22012-05-24 12:20:45 +0000212 Auto fit text into bounding box.
cristy3ed852e2009-09-05 21:47:34 +0000213 */
cristy8592b052013-02-07 01:24:54 +0000214 for ( ; ; draw_info->pointsize*=2.0)
cristy3ed852e2009-09-05 21:47:34 +0000215 {
216 text=AcquireString(caption);
cristya5302732013-05-30 22:26:58 +0000217 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
cristy5cbc0162011-08-29 00:36:28 +0000218 exception);
cristy3ed852e2009-09-05 21:47:34 +0000219 (void) CloneString(&draw_info->text,text);
220 text=DestroyString(text);
cristy151b66d2015-04-15 10:50:31 +0000221 (void) FormatLocaleString(geometry,MagickPathExtent,"%+g%+g",
cristyb05c5342015-02-19 16:01:46 +0000222 -metrics.bounds.x1,metrics.ascent);
cristy3ed852e2009-09-05 21:47:34 +0000223 if (draw_info->gravity == UndefinedGravity)
224 (void) CloneString(&draw_info->geometry,geometry);
cristy5cbc0162011-08-29 00:36:28 +0000225 status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception);
cristybb503372010-05-27 20:51:26 +0000226 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
cristy4e82e512011-04-24 01:33:42 +0000227 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5);
cristy071c2e22013-05-11 01:05:45 +0000228 if ((image->columns != 0) && (image->rows != 0))
229 {
cristycae9c062013-05-13 11:46:22 +0000230 if ((width >= image->columns) && (height >= image->rows))
cristy071c2e22013-05-11 01:05:45 +0000231 break;
232 }
233 else
cristycae9c062013-05-13 11:46:22 +0000234 if (((image->columns != 0) && (width >= image->columns)) ||
235 ((image->rows != 0) && (height >= image->rows)))
cristy071c2e22013-05-11 01:05:45 +0000236 break;
cristy3ed852e2009-09-05 21:47:34 +0000237 }
cristy0839c552013-04-14 21:45:02 +0000238 high=draw_info->pointsize;
cristy74263582013-05-30 23:47:06 +0000239 for (low=1.0; (high-low) > 0.5; )
cristy3ed852e2009-09-05 21:47:34 +0000240 {
cristybdf24b22012-05-24 12:20:45 +0000241 draw_info->pointsize=(low+high)/2.0;
cristy3ed852e2009-09-05 21:47:34 +0000242 text=AcquireString(caption);
cristya5302732013-05-30 22:26:58 +0000243 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
cristy5cbc0162011-08-29 00:36:28 +0000244 exception);
cristy3ed852e2009-09-05 21:47:34 +0000245 (void) CloneString(&draw_info->text,text);
246 text=DestroyString(text);
cristy151b66d2015-04-15 10:50:31 +0000247 (void) FormatLocaleString(geometry,MagickPathExtent,"%+g%+g",
cristyb05c5342015-02-19 16:01:46 +0000248 -metrics.bounds.x1,metrics.ascent);
cristy3ed852e2009-09-05 21:47:34 +0000249 if (draw_info->gravity == UndefinedGravity)
250 (void) CloneString(&draw_info->geometry,geometry);
cristy5cbc0162011-08-29 00:36:28 +0000251 status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception);
cristybb503372010-05-27 20:51:26 +0000252 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
cristy4e82e512011-04-24 01:33:42 +0000253 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5);
cristy071c2e22013-05-11 01:05:45 +0000254 if ((image->columns != 0) && (image->rows != 0))
255 {
cristycae9c062013-05-13 11:46:22 +0000256 if ((width < image->columns) && (height < image->rows))
cristy74263582013-05-30 23:47:06 +0000257 low=draw_info->pointsize+0.5;
cristy071c2e22013-05-11 01:05:45 +0000258 else
cristy74263582013-05-30 23:47:06 +0000259 high=draw_info->pointsize-0.5;
cristy071c2e22013-05-11 01:05:45 +0000260 }
cristybdf24b22012-05-24 12:20:45 +0000261 else
cristy071c2e22013-05-11 01:05:45 +0000262 if (((image->columns != 0) && (width < image->columns)) ||
263 ((image->rows != 0) && (height < image->rows)))
cristy74263582013-05-30 23:47:06 +0000264 low=draw_info->pointsize+0.5;
cristy071c2e22013-05-11 01:05:45 +0000265 else
cristy74263582013-05-30 23:47:06 +0000266 high=draw_info->pointsize-0.5;
cristy3ed852e2009-09-05 21:47:34 +0000267 }
cristy74263582013-05-30 23:47:06 +0000268 draw_info->pointsize=(low+high)/2.0-0.5;
cristy3ed852e2009-09-05 21:47:34 +0000269 }
cristy3ed852e2009-09-05 21:47:34 +0000270 /*
271 Draw caption.
272 */
cristy176d1cd2015-02-20 17:44:44 +0000273 i=FormatMagickCaption(image,draw_info,split,&metrics,&caption,exception);
cristy3ed852e2009-09-05 21:47:34 +0000274 (void) CloneString(&draw_info->text,caption);
cristy151b66d2015-04-15 10:50:31 +0000275 (void) FormatLocaleString(geometry,MagickPathExtent,"%+g%+g",
cristy176d1cd2015-02-20 17:44:44 +0000276 draw_info->direction == RightToLeftDirection ? image->columns-
277 metrics.bounds.x2 : -metrics.bounds.x1,draw_info->gravity ==
278 UndefinedGravity ? metrics.ascent : 0.0);
279 draw_info->geometry=AcquireString(geometry);
cristyab272ac2012-03-04 22:08:07 +0000280 status=AnnotateImage(image,draw_info,exception);
cristy176d1cd2015-02-20 17:44:44 +0000281 if (image_info->pointsize == 0.0)
282 {
283 char
cristy151b66d2015-04-15 10:50:31 +0000284 pointsize[MagickPathExtent];
cristy176d1cd2015-02-20 17:44:44 +0000285
cristy151b66d2015-04-15 10:50:31 +0000286 (void) FormatLocaleString(pointsize,MagickPathExtent,"%.20g",
cristy176d1cd2015-02-20 17:44:44 +0000287 draw_info->pointsize);
288 (void) SetImageProperty(image,"caption:pointsize",pointsize,exception);
289 }
cristy3ed852e2009-09-05 21:47:34 +0000290 draw_info=DestroyDrawInfo(draw_info);
291 caption=DestroyString(caption);
cristyab272ac2012-03-04 22:08:07 +0000292 if (status == MagickFalse)
293 {
294 image=DestroyImageList(image);
295 return((Image *) NULL);
296 }
cristy3ed852e2009-09-05 21:47:34 +0000297 return(GetFirstImageInList(image));
298}
299
300/*
301%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
302% %
303% %
304% %
305% R e g i s t e r C A P T I O N I m a g e %
306% %
307% %
308% %
309%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
310%
311% RegisterCAPTIONImage() adds attributes for the CAPTION image format to
312% the list of supported formats. The attributes include the image format
313% tag, a method to read and/or write the format, whether the format
314% supports the saving of more than one frame to the same file or blob,
315% whether the format supports native in-memory I/O, and a brief
316% description of the format.
317%
318% The format of the RegisterCAPTIONImage method is:
319%
cristybb503372010-05-27 20:51:26 +0000320% size_t RegisterCAPTIONImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000321%
322*/
cristybb503372010-05-27 20:51:26 +0000323ModuleExport size_t RegisterCAPTIONImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000324{
325 MagickInfo
326 *entry;
327
dirk06b627a2015-04-06 18:59:17 +0000328 entry=AcquireMagickInfo("CAPTION","CAPTION","Caption");
cristy3ed852e2009-09-05 21:47:34 +0000329 entry->decoder=(DecodeImageHandler *) ReadCAPTIONImage;
dirk08e9a112015-02-22 01:51:41 +0000330 entry->flags^=CoderAdjoinFlag;
cristy3ed852e2009-09-05 21:47:34 +0000331 (void) RegisterMagickInfo(entry);
332 return(MagickImageCoderSignature);
333}
334
335/*
336%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
337% %
338% %
339% %
340% U n r e g i s t e r C A P T I O N I m a g e %
341% %
342% %
343% %
344%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
345%
346% UnregisterCAPTIONImage() removes format registrations made by the
347% CAPTION module from the list of supported formats.
348%
349% The format of the UnregisterCAPTIONImage method is:
350%
351% UnregisterCAPTIONImage(void)
352%
353*/
354ModuleExport void UnregisterCAPTIONImage(void)
355{
356 (void) UnregisterMagickInfo("CAPTION");
357}