blob: c164a44f2e15b630b809c4638b31424b261b07ca [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% TTTTT X X TTTTT %
7% T X X T %
8% T X T %
9% T X X T %
10% T X X T %
11% %
12% %
cristye6ee7492013-03-16 15:04:42 +000013% Render Text Onto A Canvas Image. %
cristy3ed852e2009-09-05 21:47:34 +000014% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
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"
43#include "MagickCore/annotate.h"
44#include "MagickCore/attribute.h"
45#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
47#include "MagickCore/cache.h"
48#include "MagickCore/color.h"
49#include "MagickCore/color-private.h"
50#include "MagickCore/colorspace.h"
51#include "MagickCore/constitute.h"
52#include "MagickCore/draw.h"
53#include "MagickCore/exception.h"
54#include "MagickCore/exception-private.h"
55#include "MagickCore/geometry.h"
56#include "MagickCore/image.h"
57#include "MagickCore/image-private.h"
58#include "MagickCore/list.h"
59#include "MagickCore/magick.h"
60#include "MagickCore/memory_.h"
61#include "MagickCore/monitor.h"
62#include "MagickCore/monitor-private.h"
63#include "MagickCore/option.h"
64#include "MagickCore/pixel-accessor.h"
65#include "MagickCore/quantum-private.h"
66#include "MagickCore/static.h"
67#include "MagickCore/statistic.h"
68#include "MagickCore/string_.h"
69#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000070
71/*
72 Forward declarations.
73*/
74static MagickBooleanType
cristy3a37efd2011-08-28 20:31:03 +000075 WriteTXTImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000076
77/*
78%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79% %
80% %
81% %
82% I s T X T %
83% %
84% %
85% %
86%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
87%
88% IsTXT() returns MagickTrue if the image format type, identified by the magick
89% string, is TXT.
90%
91% The format of the IsTXT method is:
92%
93% MagickBooleanType IsTXT(const unsigned char *magick,const size_t length)
94%
95% A description of each parameter follows:
96%
97% o magick: compare image format pattern against these bytes.
98%
99% o length: Specifies the length of the magick string.
100%
101*/
102static MagickBooleanType IsTXT(const unsigned char *magick,const size_t length)
103{
104#define MagickID "# ImageMagick pixel enumeration:"
105
106 char
cristy151b66d2015-04-15 10:50:31 +0000107 colorspace[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +0000108
109 ssize_t
110 count;
111
cristyf2faecf2010-05-28 19:19:36 +0000112 unsigned long
cristy3ed852e2009-09-05 21:47:34 +0000113 columns,
114 depth,
115 rows;
116
117 if (length < 40)
118 return(MagickFalse);
119 if (LocaleNCompare((const char *) magick,MagickID,strlen(MagickID)) != 0)
120 return(MagickFalse);
121 count=(ssize_t) sscanf((const char *) magick+32,"%lu,%lu,%lu,%s",&columns,
122 &rows,&depth,colorspace);
123 if (count != 4)
124 return(MagickFalse);
125 return(MagickTrue);
126}
127
128/*
129%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
130% %
131% %
132% %
133% R e a d T E X T I m a g e %
134% %
135% %
136% %
137%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
138%
139% ReadTEXTImage() reads a text file and returns it as an image. It
140% allocates the memory necessary for the new Image structure and returns a
141% pointer to the new image.
142%
143% The format of the ReadTEXTImage method is:
144%
145% Image *ReadTEXTImage(const ImageInfo *image_info,Image *image,
146% char *text,ExceptionInfo *exception)
147%
148% A description of each parameter follows:
149%
150% o image_info: the image info.
151%
152% o image: the image.
153%
154% o text: the text storage buffer.
155%
156% o exception: return any errors or warnings in this structure.
157%
158*/
159static Image *ReadTEXTImage(const ImageInfo *image_info,Image *image,
160 char *text,ExceptionInfo *exception)
161{
162 char
cristy151b66d2015-04-15 10:50:31 +0000163 filename[MagickPathExtent],
164 geometry[MagickPathExtent],
cristy3ed852e2009-09-05 21:47:34 +0000165 *p;
166
167 DrawInfo
168 *draw_info;
169
170 Image
171 *texture;
172
cristy3ed852e2009-09-05 21:47:34 +0000173 MagickBooleanType
174 status;
175
176 PointInfo
177 delta;
178
179 RectangleInfo
180 page;
181
cristyc6da28e2011-04-28 01:41:35 +0000182 ssize_t
183 offset;
184
cristy3ed852e2009-09-05 21:47:34 +0000185 TypeMetric
186 metrics;
187
188 /*
189 Open image file.
190 */
191 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000192 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000193 if (image_info->debug != MagickFalse)
194 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
195 image_info->filename);
196 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000197 assert(exception->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000198 /*
199 Set the page geometry.
200 */
201 delta.x=DefaultResolution;
202 delta.y=DefaultResolution;
cristy2a11bef2011-10-28 18:33:11 +0000203 if ((image->resolution.x == 0.0) || (image->resolution.y == 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000204 {
205 GeometryInfo
206 geometry_info;
207
208 MagickStatusType
209 flags;
210
211 flags=ParseGeometry(PSDensityGeometry,&geometry_info);
cristy2a11bef2011-10-28 18:33:11 +0000212 image->resolution.x=geometry_info.rho;
213 image->resolution.y=geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +0000214 if ((flags & SigmaValue) == 0)
cristy2a11bef2011-10-28 18:33:11 +0000215 image->resolution.y=image->resolution.x;
cristy3ed852e2009-09-05 21:47:34 +0000216 }
217 page.width=612;
218 page.height=792;
219 page.x=43;
220 page.y=43;
221 if (image_info->page != (char *) NULL)
222 (void) ParseAbsoluteGeometry(image_info->page,&page);
223 /*
224 Initialize Image structure.
225 */
cristy2a11bef2011-10-28 18:33:11 +0000226 image->columns=(size_t) floor((((double) page.width*image->resolution.x)/
cristyc6da28e2011-04-28 01:41:35 +0000227 delta.x)+0.5);
cristy2a11bef2011-10-28 18:33:11 +0000228 image->rows=(size_t) floor((((double) page.height*image->resolution.y)/
cristyc6da28e2011-04-28 01:41:35 +0000229 delta.y)+0.5);
cristyacabb842014-12-14 23:36:33 +0000230 status=SetImageExtent(image,image->columns,image->rows,exception);
231 if (status == MagickFalse)
232 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +0000233 image->page.x=0;
234 image->page.y=0;
235 texture=(Image *) NULL;
236 if (image_info->texture != (char *) NULL)
237 {
238 ImageInfo
239 *read_info;
240
241 read_info=CloneImageInfo(image_info);
242 SetImageInfoBlob(read_info,(void *) NULL,0);
243 (void) CopyMagickString(read_info->filename,image_info->texture,
cristy151b66d2015-04-15 10:50:31 +0000244 MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000245 texture=ReadImage(read_info,exception);
246 read_info=DestroyImageInfo(read_info);
247 }
248 /*
249 Annotate the text image.
250 */
cristyea1a8aa2011-10-20 13:24:06 +0000251 (void) SetImageBackgroundColor(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000252 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);
253 (void) CloneString(&draw_info->text,image_info->filename);
cristy151b66d2015-04-15 10:50:31 +0000254 (void) FormatLocaleString(geometry,MagickPathExtent,"0x0%+ld%+ld",(long) page.x,
cristyf2faecf2010-05-28 19:19:36 +0000255 (long) page.y);
cristy3ed852e2009-09-05 21:47:34 +0000256 (void) CloneString(&draw_info->geometry,geometry);
cristy5cbc0162011-08-29 00:36:28 +0000257 status=GetTypeMetrics(image,draw_info,&metrics,exception);
cristy3ed852e2009-09-05 21:47:34 +0000258 if (status == MagickFalse)
259 ThrowReaderException(TypeError,"UnableToGetTypeMetrics");
cristybb503372010-05-27 20:51:26 +0000260 page.y=(ssize_t) ceil((double) page.y+metrics.ascent-0.5);
cristy151b66d2015-04-15 10:50:31 +0000261 (void) FormatLocaleString(geometry,MagickPathExtent,"0x0%+ld%+ld",(long) page.x,
cristyf2faecf2010-05-28 19:19:36 +0000262 (long) page.y);
cristy3ed852e2009-09-05 21:47:34 +0000263 (void) CloneString(&draw_info->geometry,geometry);
cristy151b66d2015-04-15 10:50:31 +0000264 (void) CopyMagickString(filename,image_info->filename,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000265 if (*draw_info->text != '\0')
266 *draw_info->text='\0';
267 p=text;
268 for (offset=2*page.y; p != (char *) NULL; )
269 {
270 /*
271 Annotate image with text.
272 */
273 (void) ConcatenateString(&draw_info->text,text);
274 (void) ConcatenateString(&draw_info->text,"\n");
cristybb503372010-05-27 20:51:26 +0000275 offset+=(ssize_t) (metrics.ascent-metrics.descent);
cristy3ed852e2009-09-05 21:47:34 +0000276 if (image->previous == (Image *) NULL)
277 {
278 status=SetImageProgress(image,LoadImageTag,offset,image->rows);
279 if (status == MagickFalse)
280 break;
281 }
282 p=ReadBlobString(image,text);
cristybb503372010-05-27 20:51:26 +0000283 if ((offset < (ssize_t) image->rows) && (p != (char *) NULL))
cristy3ed852e2009-09-05 21:47:34 +0000284 continue;
285 if (texture != (Image *) NULL)
286 {
287 MagickProgressMonitor
288 progress_monitor;
289
290 progress_monitor=SetImageProgressMonitor(image,
291 (MagickProgressMonitor) NULL,image->client_data);
cristye941a752011-10-15 01:52:48 +0000292 (void) TextureImage(image,texture,exception);
cristy3ed852e2009-09-05 21:47:34 +0000293 (void) SetImageProgressMonitor(image,progress_monitor,
294 image->client_data);
295 }
cristy5cbc0162011-08-29 00:36:28 +0000296 (void) AnnotateImage(image,draw_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000297 if (p == (char *) NULL)
298 break;
299 /*
300 Page is full-- allocate next image structure.
301 */
302 *draw_info->text='\0';
303 offset=2*page.y;
cristy9950d572011-10-01 18:22:35 +0000304 AcquireNextImage(image_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000305 if (GetNextImageInList(image) == (Image *) NULL)
306 {
307 image=DestroyImageList(image);
308 return((Image *) NULL);
309 }
310 image->next->columns=image->columns;
311 image->next->rows=image->rows;
312 image=SyncNextImageInList(image);
cristy151b66d2015-04-15 10:50:31 +0000313 (void) CopyMagickString(image->filename,filename,MagickPathExtent);
cristyea1a8aa2011-10-20 13:24:06 +0000314 (void) SetImageBackgroundColor(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000315 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
316 GetBlobSize(image));
317 if (status == MagickFalse)
318 break;
319 }
320 if (texture != (Image *) NULL)
321 {
322 MagickProgressMonitor
323 progress_monitor;
324
325 progress_monitor=SetImageProgressMonitor(image,
326 (MagickProgressMonitor) NULL,image->client_data);
cristye941a752011-10-15 01:52:48 +0000327 (void) TextureImage(image,texture,exception);
cristy3ed852e2009-09-05 21:47:34 +0000328 (void) SetImageProgressMonitor(image,progress_monitor,image->client_data);
329 }
cristy5cbc0162011-08-29 00:36:28 +0000330 (void) AnnotateImage(image,draw_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000331 if (texture != (Image *) NULL)
332 texture=DestroyImage(texture);
333 draw_info=DestroyDrawInfo(draw_info);
334 (void) CloseBlob(image);
335 return(GetFirstImageInList(image));
336}
337
338/*
339%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
340% %
341% %
342% %
343% R e a d T X T I m a g e %
344% %
345% %
346% %
347%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
348%
349% ReadTXTImage() reads a text file and returns it as an image. It allocates
350% the memory necessary for the new Image structure and returns a pointer to
351% the new image.
352%
353% The format of the ReadTXTImage method is:
354%
355% Image *ReadTXTImage(const ImageInfo *image_info,ExceptionInfo *exception)
356%
357% A description of each parameter follows:
358%
359% o image_info: the image info.
360%
361% o exception: return any errors or warnings in this structure.
362%
363*/
364static Image *ReadTXTImage(const ImageInfo *image_info,ExceptionInfo *exception)
365{
366 char
cristy151b66d2015-04-15 10:50:31 +0000367 colorspace[MagickPathExtent],
368 text[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +0000369
370 Image
371 *image;
372
cristyf2faecf2010-05-28 19:19:36 +0000373 long
cristy3ed852e2009-09-05 21:47:34 +0000374 type,
cristy9c7e2af2010-05-23 23:13:27 +0000375 x_offset,
376 y,
377 y_offset;
cristy3ed852e2009-09-05 21:47:34 +0000378
cristy101ab702011-10-13 13:06:32 +0000379 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000380 pixel;
381
382 MagickBooleanType
383 status;
384
385 QuantumAny
386 range;
387
cristybb503372010-05-27 20:51:26 +0000388 register ssize_t
cristy9c7e2af2010-05-23 23:13:27 +0000389 i,
390 x;
cristy3ed852e2009-09-05 21:47:34 +0000391
cristy4c08aed2011-07-01 19:47:50 +0000392 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000393 *q;
394
395 ssize_t
396 count;
397
cristyf2faecf2010-05-28 19:19:36 +0000398 unsigned long
cristy3ed852e2009-09-05 21:47:34 +0000399 depth,
cristyf2faecf2010-05-28 19:19:36 +0000400 height,
401 max_value,
402 width;
cristy3ed852e2009-09-05 21:47:34 +0000403
404 /*
405 Open image file.
406 */
407 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000408 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000409 if (image_info->debug != MagickFalse)
410 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
411 image_info->filename);
412 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000413 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000414 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000415 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
416 if (status == MagickFalse)
417 {
418 image=DestroyImageList(image);
419 return((Image *) NULL);
420 }
421 (void) ResetMagickMemory(text,0,sizeof(text));
422 (void) ReadBlobString(image,text);
423 if (LocaleNCompare((char *) text,MagickID,strlen(MagickID)) != 0)
424 return(ReadTEXTImage(image_info,image,text,exception));
cristy9c7e2af2010-05-23 23:13:27 +0000425 do
cristy3ed852e2009-09-05 21:47:34 +0000426 {
cristye7f2a362014-02-07 00:04:28 +0000427 width=0;
428 height=0;
429 max_value=0;
cristy9c7e2af2010-05-23 23:13:27 +0000430 *colorspace='\0';
cristyf2faecf2010-05-28 19:19:36 +0000431 count=(ssize_t) sscanf(text+32,"%lu,%lu,%lu,%s",&width,&height,&max_value,
432 colorspace);
cristye7f2a362014-02-07 00:04:28 +0000433 if ((count != 4) || (width == 0) || (height == 0) || (max_value == 0))
cristy9c7e2af2010-05-23 23:13:27 +0000434 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristyf2faecf2010-05-28 19:19:36 +0000435 image->columns=width;
436 image->rows=height;
cristy9c7e2af2010-05-23 23:13:27 +0000437 for (depth=1; (GetQuantumRange(depth)+1) < max_value; depth++) ;
438 image->depth=depth;
cristyacabb842014-12-14 23:36:33 +0000439 status=SetImageExtent(image,image->columns,image->rows,exception);
440 if (status == MagickFalse)
441 return(DestroyImageList(image));
cristy9c7e2af2010-05-23 23:13:27 +0000442 LocaleLower(colorspace);
cristybb503372010-05-27 20:51:26 +0000443 i=(ssize_t) strlen(colorspace)-1;
cristy8a46d822012-08-28 23:32:39 +0000444 image->alpha_trait=UndefinedPixelTrait;
cristy9c7e2af2010-05-23 23:13:27 +0000445 if ((i > 0) && (colorspace[i] == 'a'))
cristy3ed852e2009-09-05 21:47:34 +0000446 {
cristy9c7e2af2010-05-23 23:13:27 +0000447 colorspace[i]='\0';
cristy8a46d822012-08-28 23:32:39 +0000448 image->alpha_trait=BlendPixelTrait;
cristy9c7e2af2010-05-23 23:13:27 +0000449 }
cristy042ee782011-04-22 18:48:30 +0000450 type=ParseCommandOption(MagickColorspaceOptions,MagickFalse,colorspace);
cristy9c7e2af2010-05-23 23:13:27 +0000451 if (type < 0)
452 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristyea1a8aa2011-10-20 13:24:06 +0000453 (void) SetImageBackgroundColor(image,exception);
cristycaf45802012-06-16 18:28:54 +0000454 (void) SetImageColorspace(image,(ColorspaceType) type,exception);
cristye9139612012-01-03 02:19:10 +0000455 GetPixelInfo(image,&pixel);
cristy9c7e2af2010-05-23 23:13:27 +0000456 range=GetQuantumRange(image->depth);
cristybb503372010-05-27 20:51:26 +0000457 for (y=0; y < (ssize_t) image->rows; y++)
cristy9c7e2af2010-05-23 23:13:27 +0000458 {
cristy9333f752012-10-10 23:49:45 +0000459 double
460 alpha,
461 black,
462 blue,
463 green,
464 red;
465
cristy4d246fc2014-01-15 22:33:44 +0000466 red=0.0;
467 green=0.0;
468 blue=0.0;
469 black=0.0;
470 alpha=0.0;
cristybb503372010-05-27 20:51:26 +0000471 for (x=0; x < (ssize_t) image->columns; x++)
cristy9c7e2af2010-05-23 23:13:27 +0000472 {
473 if (ReadBlobString(image,text) == (char *) NULL)
474 break;
cristye9139612012-01-03 02:19:10 +0000475 switch (image->colorspace)
476 {
477 case GRAYColorspace:
cristy9c7e2af2010-05-23 23:13:27 +0000478 {
cristy17f11b02014-12-20 19:37:04 +0000479 if (image->alpha_trait != UndefinedPixelTrait)
cristye9139612012-01-03 02:19:10 +0000480 {
cristy9f3b4fc2014-02-08 14:56:20 +0000481 count=(ssize_t) sscanf(text,"%ld,%ld: (%lf%*[%,]%lf%*[%,]",
482 &x_offset,&y_offset,&red,&alpha);
cristy9333f752012-10-10 23:49:45 +0000483 green=red;
484 blue=red;
cristye9139612012-01-03 02:19:10 +0000485 break;
486 }
cristy9f3b4fc2014-02-08 14:56:20 +0000487 count=(ssize_t) sscanf(text,"%ld,%ld: (%lf%*[%,]",&x_offset,
488 &y_offset,&red);
cristy9333f752012-10-10 23:49:45 +0000489 green=red;
490 blue=red;
cristye9139612012-01-03 02:19:10 +0000491 break;
cristy9c7e2af2010-05-23 23:13:27 +0000492 }
cristye9139612012-01-03 02:19:10 +0000493 case CMYKColorspace:
494 {
cristy17f11b02014-12-20 19:37:04 +0000495 if (image->alpha_trait != UndefinedPixelTrait)
cristye9139612012-01-03 02:19:10 +0000496 {
cristy9f3b4fc2014-02-08 14:56:20 +0000497 count=(ssize_t) sscanf(text,
498 "%ld,%ld: (%lf%*[%,]%lf%*[%,]%lf%*[%,]%lf%*[%,]%lf%*[%,]",
cristy9333f752012-10-10 23:49:45 +0000499 &x_offset,&y_offset,&red,&green,&blue,&black,&alpha);
cristye9139612012-01-03 02:19:10 +0000500 break;
501 }
cristy9f3b4fc2014-02-08 14:56:20 +0000502 count=(ssize_t) sscanf(text,
503 "%ld,%ld: (%lf%*[%,]%lf%*[%,]%lf%*[%,]%lf%*[%,]",&x_offset,
cristy9333f752012-10-10 23:49:45 +0000504 &y_offset,&red,&green,&blue,&black);
cristye9139612012-01-03 02:19:10 +0000505 break;
506 }
507 default:
508 {
cristy17f11b02014-12-20 19:37:04 +0000509 if (image->alpha_trait != UndefinedPixelTrait)
cristye9139612012-01-03 02:19:10 +0000510 {
cristy9f3b4fc2014-02-08 14:56:20 +0000511 count=(ssize_t) sscanf(text,
512 "%ld,%ld: (%lf%*[%,]%lf%*[%,]%lf%*[%,]%lf%*[%,]",
cristy9333f752012-10-10 23:49:45 +0000513 &x_offset,&y_offset,&red,&green,&blue,&alpha);
cristye9139612012-01-03 02:19:10 +0000514 break;
515 }
cristy9f3b4fc2014-02-08 14:56:20 +0000516 count=(ssize_t) sscanf(text,
517 "%ld,%ld: (%lf%*[%,]%lf%*[%,]%lf%*[%,]",&x_offset,
cristy9333f752012-10-10 23:49:45 +0000518 &y_offset,&red,&green,&blue);
cristye9139612012-01-03 02:19:10 +0000519 break;
520 }
521 }
cristy9f3b4fc2014-02-08 14:56:20 +0000522 if (strchr(text,'%') != (char *) NULL)
523 {
524 red*=0.01*range;
525 green*=0.01*range;
526 blue*=0.01*range;
527 black*=0.01*range;
528 alpha*=0.01*range;
529 }
cristyc5349322012-11-27 02:36:11 +0000530 if (image->colorspace == LabColorspace)
cristy24098612012-11-27 02:18:38 +0000531 {
cristy45fce9f2014-07-03 12:53:58 +0000532 green+=(range+1)/2.0;
533 blue+=(range+1)/2.0;
cristy24098612012-11-27 02:18:38 +0000534 }
cristy9333f752012-10-10 23:49:45 +0000535 pixel.red=ScaleAnyToQuantum((QuantumAny) (red+0.5),range);
536 pixel.green=ScaleAnyToQuantum((QuantumAny) (green+0.5),range);
537 pixel.blue=ScaleAnyToQuantum((QuantumAny) (blue+0.5),range);
538 pixel.black=ScaleAnyToQuantum((QuantumAny) (black+0.5),range);
539 pixel.alpha=ScaleAnyToQuantum((QuantumAny) (alpha+0.5),range);
cristy9c7e2af2010-05-23 23:13:27 +0000540 q=GetAuthenticPixels(image,x_offset,y_offset,1,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000541 if (q == (Quantum *) NULL)
cristy9c7e2af2010-05-23 23:13:27 +0000542 continue;
cristy11a06d32015-01-04 12:03:27 +0000543 SetPixelViaPixelInfo(image,&pixel,q);
cristy9c7e2af2010-05-23 23:13:27 +0000544 if (SyncAuthenticPixels(image,exception) == MagickFalse)
545 break;
cristy3ed852e2009-09-05 21:47:34 +0000546 }
cristy9c7e2af2010-05-23 23:13:27 +0000547 }
548 (void) ReadBlobString(image,text);
549 if (LocaleNCompare((char *) text,MagickID,strlen(MagickID)) == 0)
cristy3ed852e2009-09-05 21:47:34 +0000550 {
cristy9c7e2af2010-05-23 23:13:27 +0000551 /*
552 Allocate next image structure.
553 */
cristy9950d572011-10-01 18:22:35 +0000554 AcquireNextImage(image_info,image,exception);
cristy9c7e2af2010-05-23 23:13:27 +0000555 if (GetNextImageInList(image) == (Image *) NULL)
556 {
557 image=DestroyImageList(image);
558 return((Image *) NULL);
559 }
560 image=SyncNextImageInList(image);
561 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
562 GetBlobSize(image));
563 if (status == MagickFalse)
564 break;
cristy3ed852e2009-09-05 21:47:34 +0000565 }
cristy9c7e2af2010-05-23 23:13:27 +0000566 } while (LocaleNCompare((char *) text,MagickID,strlen(MagickID)) == 0);
567 (void) CloseBlob(image);
cristy3ed852e2009-09-05 21:47:34 +0000568 return(GetFirstImageInList(image));
569}
570
571/*
572%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
573% %
574% %
575% %
576% R e g i s t e r T X T I m a g e %
577% %
578% %
579% %
580%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
581%
582% RegisterTXTImage() adds attributes for the TXT image format to the
583% list of supported formats. The attributes include the image format
584% tag, a method to read and/or write the format, whether the format
585% supports the saving of more than one frame to the same file or blob,
586% whether the format supports native in-memory I/O, and a brief
587% description of the format.
588%
589% The format of the RegisterTXTImage method is:
590%
cristybb503372010-05-27 20:51:26 +0000591% size_t RegisterTXTImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000592%
593*/
cristybb503372010-05-27 20:51:26 +0000594ModuleExport size_t RegisterTXTImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000595{
596 MagickInfo
597 *entry;
598
dirk06b627a2015-04-06 18:59:17 +0000599 entry=AcquireMagickInfo("TXT","SPARSE-COLOR","Sparse Color");
cristye6ee7492013-03-16 15:04:42 +0000600 entry->encoder=(EncodeImageHandler *) WriteTXTImage;
dirk08e9a112015-02-22 01:51:41 +0000601 entry->flags|=CoderRawSupportFlag;
602 entry->flags|=CoderEndianSupportFlag;
cristye6ee7492013-03-16 15:04:42 +0000603 (void) RegisterMagickInfo(entry);
dirk06b627a2015-04-06 18:59:17 +0000604 entry=AcquireMagickInfo("TXT","TEXT","Text");
cristy3ed852e2009-09-05 21:47:34 +0000605 entry->decoder=(DecodeImageHandler *) ReadTXTImage;
606 entry->encoder=(EncodeImageHandler *) WriteTXTImage;
dirk08e9a112015-02-22 01:51:41 +0000607 entry->flags|=CoderRawSupportFlag;
608 entry->flags|=CoderEndianSupportFlag;
cristy3ed852e2009-09-05 21:47:34 +0000609 (void) RegisterMagickInfo(entry);
dirk06b627a2015-04-06 18:59:17 +0000610 entry=AcquireMagickInfo("TXT","TXT","Text");
cristy3ed852e2009-09-05 21:47:34 +0000611 entry->decoder=(DecodeImageHandler *) ReadTXTImage;
612 entry->encoder=(EncodeImageHandler *) WriteTXTImage;
cristy3ed852e2009-09-05 21:47:34 +0000613 entry->magick=(IsImageFormatHandler *) IsTXT;
cristy3ed852e2009-09-05 21:47:34 +0000614 (void) RegisterMagickInfo(entry);
615 return(MagickImageCoderSignature);
616}
617
618/*
619%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
620% %
621% %
622% %
623% U n r e g i s t e r T X T I m a g e %
624% %
625% %
626% %
627%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
628%
629% UnregisterTXTImage() removes format registrations made by the
630% TXT module from the list of supported format.
631%
632% The format of the UnregisterTXTImage method is:
633%
634% UnregisterTXTImage(void)
635%
636*/
637ModuleExport void UnregisterTXTImage(void)
638{
cristye6ee7492013-03-16 15:04:42 +0000639 (void) UnregisterMagickInfo("SPARSE-COLOR");
cristy3ed852e2009-09-05 21:47:34 +0000640 (void) UnregisterMagickInfo("TEXT");
641 (void) UnregisterMagickInfo("TXT");
642}
643
644/*
645%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
646% %
647% %
648% %
649% W r i t e T X T I m a g e %
650% %
651% %
652% %
653%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
654%
655% WriteTXTImage writes the pixel values as text numbers.
656%
657% The format of the WriteTXTImage method is:
658%
cristy3a37efd2011-08-28 20:31:03 +0000659% MagickBooleanType WriteTXTImage(const ImageInfo *image_info,
660% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000661%
662% A description of each parameter follows.
663%
664% o image_info: the image info.
665%
666% o image: The image.
667%
cristy3a37efd2011-08-28 20:31:03 +0000668% o exception: return any errors or warnings in this structure.
669%
cristy3ed852e2009-09-05 21:47:34 +0000670*/
cristy3a37efd2011-08-28 20:31:03 +0000671static MagickBooleanType WriteTXTImage(const ImageInfo *image_info,Image *image,
672 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000673{
674 char
cristy151b66d2015-04-15 10:50:31 +0000675 buffer[MagickPathExtent],
676 colorspace[MagickPathExtent],
677 tuple[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +0000678
cristy3ed852e2009-09-05 21:47:34 +0000679 MagickBooleanType
680 status;
681
cristy9c7e2af2010-05-23 23:13:27 +0000682 MagickOffsetType
683 scene;
684
cristy4c08aed2011-07-01 19:47:50 +0000685 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000686 pixel;
687
cristy4c08aed2011-07-01 19:47:50 +0000688 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000689 *p;
690
cristybb503372010-05-27 20:51:26 +0000691 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000692 x;
693
cristyc6da28e2011-04-28 01:41:35 +0000694 ssize_t
695 y;
696
cristy3ed852e2009-09-05 21:47:34 +0000697 /*
698 Open output image file.
699 */
700 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000701 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000702 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000703 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000704 if (image->debug != MagickFalse)
705 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000706 status=OpenBlob(image_info,image,WriteBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000707 if (status == MagickFalse)
708 return(status);
cristy9c7e2af2010-05-23 23:13:27 +0000709 scene=0;
710 do
cristy3ed852e2009-09-05 21:47:34 +0000711 {
cristy2c992db2013-09-02 02:12:55 +0000712 ComplianceType
713 compliance;
714
Cristy14010442015-08-15 11:05:42 -0400715 const char
716 *value;
717
cristy042ee782011-04-22 18:48:30 +0000718 (void) CopyMagickString(colorspace,CommandOptionToMnemonic(
cristy151b66d2015-04-15 10:50:31 +0000719 MagickColorspaceOptions,(ssize_t) image->colorspace),MagickPathExtent);
cristy9c7e2af2010-05-23 23:13:27 +0000720 LocaleLower(colorspace);
721 image->depth=GetImageQuantumDepth(image,MagickTrue);
cristy17f11b02014-12-20 19:37:04 +0000722 if (image->alpha_trait != UndefinedPixelTrait)
cristy151b66d2015-04-15 10:50:31 +0000723 (void) ConcatenateMagickString(colorspace,"a",MagickPathExtent);
cristy2c992db2013-09-02 02:12:55 +0000724 compliance=NoCompliance;
Cristy14010442015-08-15 11:05:42 -0400725 value=GetImageOption(image_info,"txt:compliance");
726 if (value != (char *) NULL)
727 compliance=(ComplianceType) ParseCommandOption(MagickComplianceOptions,
728 MagickFalse,value);
cristye6ee7492013-03-16 15:04:42 +0000729 if (LocaleCompare(image_info->magick,"SPARSE-COLOR") != 0)
730 {
cristy151b66d2015-04-15 10:50:31 +0000731 (void) FormatLocaleString(buffer,MagickPathExtent,
cristye6ee7492013-03-16 15:04:42 +0000732 "# ImageMagick pixel enumeration: %.20g,%.20g,%.20g,%s\n",(double)
cristy1a598952013-09-06 13:11:23 +0000733 image->columns,(double) image->rows,(double) ((MagickOffsetType)
734 GetQuantumRange(image->depth)),colorspace);
cristye6ee7492013-03-16 15:04:42 +0000735 (void) WriteBlobString(image,buffer);
736 }
cristy4c08aed2011-07-01 19:47:50 +0000737 GetPixelInfo(image,&pixel);
cristybb503372010-05-27 20:51:26 +0000738 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000739 {
cristy3a37efd2011-08-28 20:31:03 +0000740 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000741 if (p == (const Quantum *) NULL)
cristy9c7e2af2010-05-23 23:13:27 +0000742 break;
cristybb503372010-05-27 20:51:26 +0000743 for (x=0; x < (ssize_t) image->columns; x++)
cristy9c7e2af2010-05-23 23:13:27 +0000744 {
cristy803640d2011-11-17 02:11:32 +0000745 GetPixelInfoPixel(image,p,&pixel);
cristy24098612012-11-27 02:18:38 +0000746 if (pixel.colorspace == LabColorspace)
747 {
cristy681068f2014-07-03 12:48:42 +0000748 pixel.green-=(QuantumRange+1)/2.0;
749 pixel.blue-=(QuantumRange+1)/2.0;
cristy24098612012-11-27 02:18:38 +0000750 }
cristye6ee7492013-03-16 15:04:42 +0000751 if (LocaleCompare(image_info->magick,"SPARSE-COLOR") == 0)
752 {
753 /*
754 Sparse-color format.
755 */
756 if (GetPixelAlpha(image,p) == (Quantum) OpaqueAlpha)
757 {
cristy0e339ba2013-03-18 00:20:48 +0000758 GetColorTuple(&pixel,MagickFalse,tuple);
cristy151b66d2015-04-15 10:50:31 +0000759 (void) FormatLocaleString(buffer,MagickPathExtent,"%.20g,%.20g,",
cristye6ee7492013-03-16 15:04:42 +0000760 (double) x,(double) y);
761 (void) WriteBlobString(image,buffer);
762 (void) WriteBlobString(image,tuple);
763 (void) WriteBlobString(image," ");
764 }
765 p+=GetPixelChannels(image);
766 continue;
767 }
cristy151b66d2015-04-15 10:50:31 +0000768 (void) FormatLocaleString(buffer,MagickPathExtent,"%.20g,%.20g: ",(double)
cristybbb9b902013-03-13 10:25:06 +0000769 x,(double) y);
770 (void) WriteBlobString(image,buffer);
cristy151b66d2015-04-15 10:50:31 +0000771 (void) CopyMagickString(tuple,"(",MagickPathExtent);
cristye9139612012-01-03 02:19:10 +0000772 if (pixel.colorspace == GRAYColorspace)
cristy2c992db2013-09-02 02:12:55 +0000773 ConcatenateColorComponent(&pixel,GrayPixelChannel,compliance,
cristye9139612012-01-03 02:19:10 +0000774 tuple);
775 else
776 {
cristy2c992db2013-09-02 02:12:55 +0000777 ConcatenateColorComponent(&pixel,RedPixelChannel,compliance,tuple);
cristy151b66d2015-04-15 10:50:31 +0000778 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
cristy2c992db2013-09-02 02:12:55 +0000779 ConcatenateColorComponent(&pixel,GreenPixelChannel,compliance,
cristye9139612012-01-03 02:19:10 +0000780 tuple);
cristy151b66d2015-04-15 10:50:31 +0000781 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
cristy2c992db2013-09-02 02:12:55 +0000782 ConcatenateColorComponent(&pixel,BluePixelChannel,compliance,tuple);
cristye9139612012-01-03 02:19:10 +0000783 }
cristy9c7e2af2010-05-23 23:13:27 +0000784 if (pixel.colorspace == CMYKColorspace)
785 {
cristy151b66d2015-04-15 10:50:31 +0000786 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
cristy2c992db2013-09-02 02:12:55 +0000787 ConcatenateColorComponent(&pixel,BlackPixelChannel,compliance,
cristyfa806a72011-07-04 02:06:13 +0000788 tuple);
cristy9c7e2af2010-05-23 23:13:27 +0000789 }
cristy17f11b02014-12-20 19:37:04 +0000790 if (pixel.alpha_trait != UndefinedPixelTrait)
cristy9c7e2af2010-05-23 23:13:27 +0000791 {
cristy151b66d2015-04-15 10:50:31 +0000792 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
cristy2c992db2013-09-02 02:12:55 +0000793 ConcatenateColorComponent(&pixel,AlphaPixelChannel,compliance,
cristyfa806a72011-07-04 02:06:13 +0000794 tuple);
cristy9c7e2af2010-05-23 23:13:27 +0000795 }
cristy151b66d2015-04-15 10:50:31 +0000796 (void) ConcatenateMagickString(tuple,")",MagickPathExtent);
cristy9c7e2af2010-05-23 23:13:27 +0000797 (void) WriteBlobString(image,tuple);
798 (void) WriteBlobString(image," ");
799 GetColorTuple(&pixel,MagickTrue,tuple);
cristy151b66d2015-04-15 10:50:31 +0000800 (void) FormatLocaleString(buffer,MagickPathExtent,"%s",tuple);
cristy9c7e2af2010-05-23 23:13:27 +0000801 (void) WriteBlobString(image,buffer);
802 (void) WriteBlobString(image," ");
cristy269c9412011-10-13 23:41:15 +0000803 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,exception);
cristy9c7e2af2010-05-23 23:13:27 +0000804 (void) WriteBlobString(image,tuple);
805 (void) WriteBlobString(image,"\n");
cristyed231572011-07-14 02:18:59 +0000806 p+=GetPixelChannels(image);
cristy9c7e2af2010-05-23 23:13:27 +0000807 }
cristycee97112010-05-28 00:44:52 +0000808 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy2aac09a2010-06-06 16:46:43 +0000809 image->rows);
cristy9c7e2af2010-05-23 23:13:27 +0000810 if (status == MagickFalse)
811 break;
cristy3ed852e2009-09-05 21:47:34 +0000812 }
cristy9c7e2af2010-05-23 23:13:27 +0000813 if (GetNextImageInList(image) == (Image *) NULL)
814 break;
815 image=SyncNextImageInList(image);
816 status=SetImageProgress(image,SaveImagesTag,scene++,
817 GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +0000818 if (status == MagickFalse)
819 break;
cristy9c7e2af2010-05-23 23:13:27 +0000820 } while (image_info->adjoin != MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +0000821 (void) CloseBlob(image);
822 return(MagickTrue);
823}