]> granicus.if.org Git - imagemagick/blob - MagickCore/annotate.c
(no commit message)
[imagemagick] / MagickCore / annotate.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %           AAA   N   N  N   N   OOO   TTTTT   AAA   TTTTT  EEEEE             %
7 %          A   A  NN  N  NN  N  O   O    T    A   A    T    E                 %
8 %          AAAAA  N N N  N N N  O   O    T    AAAAA    T    EEE               %
9 %          A   A  N  NN  N  NN  O   O    T    A   A    T    E                 %
10 %          A   A  N   N  N   N   OOO     T    A   A    T    EEEEE             %
11 %                                                                             %
12 %                                                                             %
13 %                   MagickCore Image Annotation Methods                       %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                John Cristy                                  %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization      %
21 %  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 % Digital Applications (www.digapp.com) contributed the stroked text algorithm.
37 % It was written by Leonard Rosenthol.
38 %
39 %
40 */
41 \f
42 /*
43   Include declarations.
44 */
45 #include "MagickCore/studio.h"
46 #include "MagickCore/annotate.h"
47 #include "MagickCore/annotate-private.h"
48 #include "MagickCore/attribute.h"
49 #include "MagickCore/cache-view.h"
50 #include "MagickCore/client.h"
51 #include "MagickCore/color.h"
52 #include "MagickCore/color-private.h"
53 #include "MagickCore/composite.h"
54 #include "MagickCore/composite-private.h"
55 #include "MagickCore/constitute.h"
56 #include "MagickCore/draw.h"
57 #include "MagickCore/draw-private.h"
58 #include "MagickCore/exception.h"
59 #include "MagickCore/exception-private.h"
60 #include "MagickCore/gem.h"
61 #include "MagickCore/geometry.h"
62 #include "MagickCore/image-private.h"
63 #include "MagickCore/log.h"
64 #include "MagickCore/quantum.h"
65 #include "MagickCore/quantum-private.h"
66 #include "MagickCore/pixel-accessor.h"
67 #include "MagickCore/property.h"
68 #include "MagickCore/resource_.h"
69 #include "MagickCore/semaphore.h"
70 #include "MagickCore/statistic.h"
71 #include "MagickCore/string_.h"
72 #include "MagickCore/token-private.h"
73 #include "MagickCore/transform.h"
74 #include "MagickCore/type.h"
75 #include "MagickCore/utility.h"
76 #include "MagickCore/utility-private.h"
77 #include "MagickCore/xwindow.h"
78 #include "MagickCore/xwindow-private.h"
79 #if defined(MAGICKCORE_FREETYPE_DELEGATE)
80 #if defined(__MINGW32__)
81 #  undef interface
82 #endif
83 #if defined(MAGICKCORE_HAVE_FT2BUILD_H)
84 #  include <ft2build.h>
85 #endif
86 #if defined(FT_FREETYPE_H)
87 #  include FT_FREETYPE_H
88 #else
89 #  include <freetype/freetype.h>
90 #endif
91 #if defined(FT_GLYPH_H)
92 #  include FT_GLYPH_H
93 #else
94 #  include <freetype/ftglyph.h>
95 #endif
96 #if defined(FT_OUTLINE_H)
97 #  include FT_OUTLINE_H
98 #else
99 #  include <freetype/ftoutln.h>
100 #endif
101 #if defined(FT_BBOX_H)
102 #  include FT_BBOX_H
103 #else
104 #  include <freetype/ftbbox.h>
105 #endif /* defined(FT_BBOX_H) */
106 #endif
107 \f
108 /*
109   Annotate semaphores.
110 */
111 static SemaphoreInfo
112   *annotate_semaphore = (SemaphoreInfo *) NULL;
113 \f
114 /*
115   Forward declarations.
116 */
117 static MagickBooleanType
118   RenderType(Image *,const DrawInfo *,const PointInfo *,TypeMetric *,
119     ExceptionInfo *),
120   RenderPostscript(Image *,const DrawInfo *,const PointInfo *,TypeMetric *,
121     ExceptionInfo *),
122   RenderFreetype(Image *,const DrawInfo *,const char *,const PointInfo *,
123     TypeMetric *,ExceptionInfo *),
124   RenderX11(Image *,const DrawInfo *,const PointInfo *,TypeMetric *,
125     ExceptionInfo *);
126 \f
127 /*
128 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
129 %                                                                             %
130 %                                                                             %
131 %                                                                             %
132 +   A n n o t a t e C o m p o n e n t G e n e s i s                           %
133 %                                                                             %
134 %                                                                             %
135 %                                                                             %
136 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
137 %
138 %  AnnotateComponentGenesis() instantiates the annotate component.
139 %
140 %  The format of the AnnotateComponentGenesis method is:
141 %
142 %      MagickBooleanType AnnotateComponentGenesis(void)
143 %
144 */
145 MagickPrivate MagickBooleanType AnnotateComponentGenesis(void)
146 {
147   AcquireSemaphoreInfo(&annotate_semaphore);
148   return(MagickTrue);
149 }
150 \f
151 /*
152 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
153 %                                                                             %
154 %                                                                             %
155 %                                                                             %
156 +   A n n o t a t e C o m p o n e n t T e r m i n u s                         %
157 %                                                                             %
158 %                                                                             %
159 %                                                                             %
160 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
161 %
162 %  AnnotateComponentTerminus() destroys the annotate component.
163 %
164 %  The format of the AnnotateComponentTerminus method is:
165 %
166 %      AnnotateComponentTerminus(void)
167 %
168 */
169 MagickPrivate void AnnotateComponentTerminus(void)
170 {
171   if (annotate_semaphore == (SemaphoreInfo *) NULL)
172     AcquireSemaphoreInfo(&annotate_semaphore);
173   DestroySemaphoreInfo(&annotate_semaphore);
174 }
175 \f
176 /*
177 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
178 %                                                                             %
179 %                                                                             %
180 %                                                                             %
181 %   A n n o t a t e I m a g e                                                 %
182 %                                                                             %
183 %                                                                             %
184 %                                                                             %
185 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
186 %
187 %  AnnotateImage() annotates an image with text.  Optionally you can include
188 %  any of the following bits of information about the image by embedding
189 %  the appropriate special characters:
190 %
191 %    %b   file size in bytes.
192 %    %c   comment.
193 %    %d   directory in which the image resides.
194 %    %e   extension of the image file.
195 %    %f   original filename of the image.
196 %    %h   height of image.
197 %    %i   filename of the image.
198 %    %k   number of unique colors.
199 %    %l   image label.
200 %    %m   image file format.
201 %    %n   number of images in a image sequence.
202 %    %o   output image filename.
203 %    %p   page number of the image.
204 %    %q   image depth (8 or 16).
205 %    %q   image depth (8 or 16).
206 %    %s   image scene number.
207 %    %t   image filename without any extension.
208 %    %u   a unique temporary filename.
209 %    %w   image width.
210 %    %x   x resolution of the image.
211 %    %y   y resolution of the image.
212 %
213 %  The format of the AnnotateImage method is:
214 %
215 %      MagickBooleanType AnnotateImage(Image *image,DrawInfo *draw_info,
216 %        ExceptionInfo *exception)
217 %
218 %  A description of each parameter follows:
219 %
220 %    o image: the image.
221 %
222 %    o draw_info: the draw info.
223 %
224 %    o exception: return any errors or warnings in this structure.
225 %
226 */
227 MagickExport MagickBooleanType AnnotateImage(Image *image,
228   const DrawInfo *draw_info,ExceptionInfo *exception)
229 {
230   char
231     primitive[MaxTextExtent],
232     **textlist;
233
234   DrawInfo
235     *annotate,
236     *annotate_info;
237
238   GeometryInfo
239     geometry_info;
240
241   MagickBooleanType
242     status;
243
244   PointInfo
245     offset;
246
247   RectangleInfo
248     geometry;
249
250   register ssize_t
251     i;
252
253   size_t
254     length;
255
256   TypeMetric
257     metrics;
258
259   size_t
260     height,
261     number_lines;
262
263   assert(image != (Image *) NULL);
264   assert(image->signature == MagickSignature);
265   if (image->debug != MagickFalse)
266     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
267   assert(draw_info != (DrawInfo *) NULL);
268   assert(draw_info->signature == MagickSignature);
269   if (draw_info->text == (char *) NULL)
270     return(MagickFalse);
271   if (*draw_info->text == '\0')
272     return(MagickTrue);
273   textlist=StringToList(draw_info->text);
274   if (textlist == (char **) NULL)
275     return(MagickFalse);
276   length=strlen(textlist[0]);
277   for (i=1; textlist[i] != (char *) NULL; i++)
278     if (strlen(textlist[i]) > length)
279       length=strlen(textlist[i]);
280   number_lines=(size_t) i;
281   annotate=CloneDrawInfo((ImageInfo *) NULL,draw_info);
282   annotate_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
283   SetGeometry(image,&geometry);
284   SetGeometryInfo(&geometry_info);
285   if (annotate_info->geometry != (char *) NULL)
286     {
287       (void) ParsePageGeometry(image,annotate_info->geometry,&geometry,
288         exception);
289       (void) ParseGeometry(annotate_info->geometry,&geometry_info);
290     }
291   if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
292     return(MagickFalse);
293   status=MagickTrue;
294   for (i=0; textlist[i] != (char *) NULL; i++)
295   {
296     /*
297       Position text relative to image.
298     */
299     annotate_info->affine.tx=geometry_info.xi-image->page.x;
300     annotate_info->affine.ty=geometry_info.psi-image->page.y;
301     (void) CloneString(&annotate->text,textlist[i]);
302     (void) GetTypeMetrics(image,annotate,&metrics,exception);
303     height=(ssize_t) (metrics.ascent-metrics.descent+
304       draw_info->interline_spacing+0.5);
305     switch (annotate->gravity)
306     {
307       case UndefinedGravity:
308       default:
309       {
310         offset.x=annotate_info->affine.tx+i*annotate_info->affine.ry*height;
311         offset.y=annotate_info->affine.ty+i*annotate_info->affine.sy*height;
312         break;
313       }
314       case NorthWestGravity:
315       {
316         offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+i*
317           annotate_info->affine.ry*height+annotate_info->affine.ry*
318           (metrics.ascent+metrics.descent);
319         offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+i*
320           annotate_info->affine.sy*height+annotate_info->affine.sy*
321           metrics.ascent;
322         break;
323       }
324       case NorthGravity:
325       {
326         offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+
327           geometry.width/2.0+i*annotate_info->affine.ry*height-
328           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)/2.0+
329           annotate_info->affine.ry*(metrics.ascent+metrics.descent);
330         offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+i*
331           annotate_info->affine.sy*height+annotate_info->affine.sy*
332           metrics.ascent-annotate_info->affine.rx*(metrics.width-
333           metrics.bounds.x1)/2.0;
334         break;
335       }
336       case NorthEastGravity:
337       {
338         offset.x=(geometry.width == 0 ? 1.0 : -1.0)*annotate_info->affine.tx+
339           geometry.width+i*annotate_info->affine.ry*height-
340           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)+
341           annotate_info->affine.ry*(metrics.ascent+metrics.descent)-1.0;
342         offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+i*
343           annotate_info->affine.sy*height+annotate_info->affine.sy*
344           metrics.ascent-annotate_info->affine.rx*(metrics.width-
345           metrics.bounds.x1);
346         break;
347       }
348       case WestGravity:
349       {
350         offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+i*
351           annotate_info->affine.ry*height+annotate_info->affine.ry*
352           (metrics.ascent+metrics.descent-(number_lines-1.0)*height)/2.0;
353         offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+
354           geometry.height/2.0+i*annotate_info->affine.sy*height+
355           annotate_info->affine.sy*(metrics.ascent+metrics.descent-
356           (number_lines-1.0)*height)/2.0;
357         break;
358       }
359       case StaticGravity:
360       case CenterGravity:
361       {
362         offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+
363           geometry.width/2.0+i*annotate_info->affine.ry*height-
364           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)/2.0+
365           annotate_info->affine.ry*(metrics.ascent+metrics.descent-
366           (number_lines-1)*height)/2.0;
367         offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+
368           geometry.height/2.0+i*annotate_info->affine.sy*height-
369           annotate_info->affine.rx*(metrics.width+metrics.bounds.x1)/2.0+
370           annotate_info->affine.sy*(metrics.ascent+metrics.descent-
371           (number_lines-1.0)*height)/2.0;
372         break;
373       }
374       case EastGravity:
375       {
376         offset.x=(geometry.width == 0 ? 1.0 : -1.0)*annotate_info->affine.tx+
377           geometry.width+i*annotate_info->affine.ry*height-
378           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)+
379           annotate_info->affine.ry*(metrics.ascent+metrics.descent-
380           (number_lines-1.0)*height)/2.0-1.0;
381         offset.y=(geometry.height == 0 ? -1.0 : 1.0)*annotate_info->affine.ty+
382           geometry.height/2.0+i*annotate_info->affine.sy*height-
383           annotate_info->affine.rx*(metrics.width+metrics.bounds.x1)+
384           annotate_info->affine.sy*(metrics.ascent+metrics.descent-
385           (number_lines-1.0)*height)/2.0;
386         break;
387       }
388       case SouthWestGravity:
389       {
390         offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+i*
391           annotate_info->affine.ry*height-annotate_info->affine.ry*
392           (number_lines-1.0)*height;
393         offset.y=(geometry.height == 0 ? 1.0 : -1.0)*annotate_info->affine.ty+
394           geometry.height+i*annotate_info->affine.sy*height-
395           annotate_info->affine.sy*(number_lines-1.0)*height+metrics.descent;
396         break;
397       }
398       case SouthGravity:
399       {
400         offset.x=(geometry.width == 0 ? -1.0 : 1.0)*annotate_info->affine.tx+
401           geometry.width/2.0+i*annotate_info->affine.ry*height-
402           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)/2.0-
403           annotate_info->affine.ry*(number_lines-1.0)*height/2.0;
404         offset.y=(geometry.height == 0 ? 1.0 : -1.0)*annotate_info->affine.ty+
405           geometry.height+i*annotate_info->affine.sy*height-
406           annotate_info->affine.rx*(metrics.width+metrics.bounds.x1)/2.0-
407           annotate_info->affine.sy*(number_lines-1.0)*height+metrics.descent;
408         break;
409       }
410       case SouthEastGravity:
411       {
412         offset.x=(geometry.width == 0 ? 1.0 : -1.0)*annotate_info->affine.tx+
413           geometry.width+i*annotate_info->affine.ry*height-
414           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)-
415           annotate_info->affine.ry*(number_lines-1.0)*height-1.0;
416         offset.y=(geometry.height == 0 ? 1.0 : -1.0)*annotate_info->affine.ty+
417           geometry.height+i*annotate_info->affine.sy*height-
418           annotate_info->affine.rx*(metrics.width+metrics.bounds.x1)-
419           annotate_info->affine.sy*(number_lines-1.0)*height+metrics.descent;
420         break;
421       }
422     }
423     switch (annotate->align)
424     {
425       case LeftAlign:
426       {
427         offset.x=annotate_info->affine.tx+i*annotate_info->affine.ry*height;
428         offset.y=annotate_info->affine.ty+i*annotate_info->affine.sy*height;
429         break;
430       }
431       case CenterAlign:
432       {
433         offset.x=annotate_info->affine.tx+i*annotate_info->affine.ry*height-
434           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1)/2.0;
435         offset.y=annotate_info->affine.ty+i*annotate_info->affine.sy*height-
436           annotate_info->affine.rx*(metrics.width+metrics.bounds.x1)/2.0;
437         break;
438       }
439       case RightAlign:
440       {
441         offset.x=annotate_info->affine.tx+i*annotate_info->affine.ry*height-
442           annotate_info->affine.sx*(metrics.width+metrics.bounds.x1);
443         offset.y=annotate_info->affine.ty+i*annotate_info->affine.sy*height-
444           annotate_info->affine.rx*(metrics.width+metrics.bounds.x1);
445         break;
446       }
447       default:
448         break;
449     }
450     if (draw_info->undercolor.alpha != TransparentAlpha)
451       {
452         DrawInfo
453           *undercolor_info;
454
455         /*
456           Text box.
457         */
458         undercolor_info=CloneDrawInfo((ImageInfo *) NULL,(DrawInfo *) NULL);
459         undercolor_info->fill=draw_info->undercolor;
460         undercolor_info->affine=draw_info->affine;
461         undercolor_info->affine.tx=offset.x-draw_info->affine.ry*metrics.ascent;
462         undercolor_info->affine.ty=offset.y-draw_info->affine.sy*metrics.ascent;
463         (void) FormatLocaleString(primitive,MaxTextExtent,
464           "rectangle 0,0 %g,%.20g",metrics.origin.x,(double) height);
465         (void) CloneString(&undercolor_info->primitive,primitive);
466         (void) DrawImage(image,undercolor_info,exception);
467         (void) DestroyDrawInfo(undercolor_info);
468       }
469     annotate_info->affine.tx=offset.x;
470     annotate_info->affine.ty=offset.y;
471     (void) FormatLocaleString(primitive,MaxTextExtent,"stroke-width %g "
472       "line 0,0 %g,0",metrics.underline_thickness,metrics.width);
473     if (annotate->decorate == OverlineDecoration)
474       {
475         annotate_info->affine.ty-=(draw_info->affine.sy*(metrics.ascent+
476           metrics.descent-metrics.underline_position));
477         (void) CloneString(&annotate_info->primitive,primitive);
478         (void) DrawImage(image,annotate_info,exception);
479       }
480     else
481       if (annotate->decorate == UnderlineDecoration)
482         {
483           annotate_info->affine.ty-=(draw_info->affine.sy*
484             metrics.underline_position);
485           (void) CloneString(&annotate_info->primitive,primitive);
486           (void) DrawImage(image,annotate_info,exception);
487         }
488     /*
489       Annotate image with text.
490     */
491     status=RenderType(image,annotate,&offset,&metrics,exception);
492     if (status == MagickFalse)
493       break;
494     if (annotate->decorate == LineThroughDecoration)
495       {
496         annotate_info->affine.ty-=(draw_info->affine.sy*(height+
497           metrics.underline_position+metrics.descent)/2.0);
498         (void) CloneString(&annotate_info->primitive,primitive);
499         (void) DrawImage(image,annotate_info,exception);
500       }
501   }
502   /*
503     Relinquish resources.
504   */
505   annotate_info=DestroyDrawInfo(annotate_info);
506   annotate=DestroyDrawInfo(annotate);
507   for (i=0; textlist[i] != (char *) NULL; i++)
508     textlist[i]=DestroyString(textlist[i]);
509   textlist=(char **) RelinquishMagickMemory(textlist);
510   return(status);
511 }
512 \f
513 /*
514 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
515 %                                                                             %
516 %                                                                             %
517 %                                                                             %
518 %  F o r m a t M a g i c k C a p t i o n                                      %
519 %                                                                             %
520 %                                                                             %
521 %                                                                             %
522 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
523 %
524 %  FormatMagickCaption() formats a caption so that it fits within the image
525 %  width.  It returns the number of lines in the formatted caption.
526 %
527 %  The format of the FormatMagickCaption method is:
528 %
529 %      ssize_t FormatMagickCaption(Image *image,DrawInfo *draw_info,
530 %        const MagickBooleanType split,TypeMetric *metrics,char **caption,
531 %        ExceptionInfo *exception)
532 %
533 %  A description of each parameter follows.
534 %
535 %    o image:  The image.
536 %
537 %    o draw_info: the draw info.
538 %
539 %    o split: when no convenient line breaks-- insert newline.
540 %
541 %    o metrics: Return the font metrics in this structure.
542 %
543 %    o caption: the caption.
544 %
545 %    o exception: return any errors or warnings in this structure.
546 %
547 */
548 MagickExport ssize_t FormatMagickCaption(Image *image,DrawInfo *draw_info,
549   const MagickBooleanType split,TypeMetric *metrics,char **caption,
550   ExceptionInfo *exception)
551 {
552   char
553     *text;
554
555   MagickBooleanType
556     status;
557
558   register char
559     *p,
560     *q,
561     *s;
562
563   register ssize_t
564     i;
565
566   size_t
567     width;
568
569   ssize_t
570     n;
571
572   text=AcquireString(draw_info->text);
573   q=draw_info->text;
574   s=(char *) NULL;
575   for (p=(*caption); GetUTFCode(p) != 0; p+=GetUTFOctets(p))
576   {
577     if (IsUTFSpace(GetUTFCode(p)) != MagickFalse)
578       s=p;
579     if (GetUTFCode(p) == '\n')
580       q=draw_info->text;
581     for (i=0; i < (ssize_t) GetUTFOctets(p); i++)
582       *q++=(*(p+i));
583     *q='\0';
584     status=GetTypeMetrics(image,draw_info,metrics,exception);
585     if (status == MagickFalse)
586       break;
587     width=(size_t) floor(metrics->width+0.5);
588     if ((width <= image->columns) || (strcmp(text,draw_info->text) == 0))
589       continue;
590     (void) strcpy(text,draw_info->text);
591     if ((s != (char *) NULL) && (GetUTFOctets(s) == 1))
592       {
593         *s='\n';
594         p=s;
595       }
596     else
597       if ((s != (char *) NULL) || (split != MagickFalse))
598         {
599           char
600             *target;
601
602           /*
603             No convenient line breaks-- insert newline.
604           */
605           target=AcquireString(*caption);
606           n=p-(*caption);
607           CopyMagickString(target,*caption,n+1);
608           ConcatenateMagickString(target,"\n",strlen(*caption)+1);
609           ConcatenateMagickString(target,p,strlen(*caption)+2);
610           (void) DestroyString(*caption);
611           *caption=target;
612           p=(*caption)+n;
613         }
614     q=draw_info->text;
615     s=(char *) NULL;
616   }
617   text=DestroyString(text);
618   n=0;
619   for (p=(*caption); GetUTFCode(p) != 0; p+=GetUTFOctets(p))
620     if (GetUTFCode(p) == '\n')
621       n++;
622   return(n);
623 }
624 \f
625 /*
626 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
627 %                                                                             %
628 %                                                                             %
629 %                                                                             %
630 %   G e t M u l t i l i n e T y p e M e t r i c s                             %
631 %                                                                             %
632 %                                                                             %
633 %                                                                             %
634 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
635 %
636 %  GetMultilineTypeMetrics() returns the following information for the
637 %  specified font and text:
638 %
639 %    character width
640 %    character height
641 %    ascender
642 %    descender
643 %    text width
644 %    text height
645 %    maximum horizontal advance
646 %    bounds: x1
647 %    bounds: y1
648 %    bounds: x2
649 %    bounds: y2
650 %    origin: x
651 %    origin: y
652 %    underline position
653 %    underline thickness
654 %
655 %  This method is like GetTypeMetrics() but it returns the maximum text width
656 %  and height for multiple lines of text.
657 %
658 %  The format of the GetMultilineTypeMetrics method is:
659 %
660 %      MagickBooleanType GetMultilineTypeMetrics(Image *image,
661 %        const DrawInfo *draw_info,TypeMetric *metrics,ExceptionInfo *exception)
662 %
663 %  A description of each parameter follows:
664 %
665 %    o image: the image.
666 %
667 %    o draw_info: the draw info.
668 %
669 %    o metrics: Return the font metrics in this structure.
670 %
671 %    o exception: return any errors or warnings in this structure.
672 %
673 */
674 MagickExport MagickBooleanType GetMultilineTypeMetrics(Image *image,
675   const DrawInfo *draw_info,TypeMetric *metrics,ExceptionInfo *exception)
676 {
677   char
678     **textlist;
679
680   DrawInfo
681     *annotate_info;
682
683   MagickBooleanType
684     status;
685
686   register ssize_t
687     i;
688
689   TypeMetric
690     extent;
691
692   assert(image != (Image *) NULL);
693   assert(image->signature == MagickSignature);
694   if (image->debug != MagickFalse)
695     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
696   assert(draw_info != (DrawInfo *) NULL);
697   assert(draw_info->text != (char *) NULL);
698   assert(draw_info->signature == MagickSignature);
699   if (*draw_info->text == '\0')
700     return(MagickFalse);
701   annotate_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
702   annotate_info->text=DestroyString(annotate_info->text);
703   /*
704     Convert newlines to multiple lines of text.
705   */
706   textlist=StringToList(draw_info->text);
707   if (textlist == (char **) NULL)
708     return(MagickFalse);
709   annotate_info->render=MagickFalse;
710   annotate_info->direction=UndefinedDirection;
711   (void) ResetMagickMemory(metrics,0,sizeof(*metrics));
712   (void) ResetMagickMemory(&extent,0,sizeof(extent));
713   /*
714     Find the widest of the text lines.
715   */
716   annotate_info->text=textlist[0];
717   status=GetTypeMetrics(image,annotate_info,&extent,exception);
718   *metrics=extent;
719   for (i=1; textlist[i] != (char *) NULL; i++)
720   {
721     annotate_info->text=textlist[i];
722     status=GetTypeMetrics(image,annotate_info,&extent,exception);
723     if (extent.width > metrics->width)
724       *metrics=extent;
725   }
726   metrics->height=(double) (i*(size_t) (metrics->ascent-metrics->descent+0.5)+
727     (i-1)*draw_info->interline_spacing);
728   /*
729     Relinquish resources.
730   */
731   annotate_info->text=(char *) NULL;
732   annotate_info=DestroyDrawInfo(annotate_info);
733   for (i=0; textlist[i] != (char *) NULL; i++)
734     textlist[i]=DestroyString(textlist[i]);
735   textlist=(char **) RelinquishMagickMemory(textlist);
736   return(status);
737 }
738 \f
739 /*
740 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
741 %                                                                             %
742 %                                                                             %
743 %                                                                             %
744 %   G e t T y p e M e t r i c s                                               %
745 %                                                                             %
746 %                                                                             %
747 %                                                                             %
748 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
749 %
750 %  GetTypeMetrics() returns the following information for the specified font
751 %  and text:
752 %
753 %    character width
754 %    character height
755 %    ascender
756 %    descender
757 %    text width
758 %    text height
759 %    maximum horizontal advance
760 %    bounds: x1
761 %    bounds: y1
762 %    bounds: x2
763 %    bounds: y2
764 %    origin: x
765 %    origin: y
766 %    underline position
767 %    underline thickness
768 %
769 %  The format of the GetTypeMetrics method is:
770 %
771 %      MagickBooleanType GetTypeMetrics(Image *image,const DrawInfo *draw_info,
772 %        TypeMetric *metrics,ExceptionInfo *exception)
773 %
774 %  A description of each parameter follows:
775 %
776 %    o image: the image.
777 %
778 %    o draw_info: the draw info.
779 %
780 %    o metrics: Return the font metrics in this structure.
781 %
782 %    o exception: return any errors or warnings in this structure.
783 %
784 */
785 MagickExport MagickBooleanType GetTypeMetrics(Image *image,
786   const DrawInfo *draw_info,TypeMetric *metrics,ExceptionInfo *exception)
787 {
788   DrawInfo
789     *annotate_info;
790
791   MagickBooleanType
792     status;
793
794   PointInfo
795     offset;
796
797   assert(image != (Image *) NULL);
798   assert(image->signature == MagickSignature);
799   if (image->debug != MagickFalse)
800     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
801   assert(draw_info != (DrawInfo *) NULL);
802   assert(draw_info->text != (char *) NULL);
803   assert(draw_info->signature == MagickSignature);
804   annotate_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
805   annotate_info->render=MagickFalse;
806   annotate_info->direction=UndefinedDirection;
807   (void) ResetMagickMemory(metrics,0,sizeof(*metrics));
808   offset.x=0.0;
809   offset.y=0.0;
810   status=RenderType(image,annotate_info,&offset,metrics,exception);
811   if (image->debug != MagickFalse)
812     (void) LogMagickEvent(AnnotateEvent,GetMagickModule(),"Metrics: text: %s; "
813       "width: %g; height: %g; ascent: %g; descent: %g; max advance: %g; "
814       "bounds: %g,%g  %g,%g; origin: %g,%g; pixels per em: %g,%g; "
815       "underline position: %g; underline thickness: %g",annotate_info->text,
816       metrics->width,metrics->height,metrics->ascent,metrics->descent,
817       metrics->max_advance,metrics->bounds.x1,metrics->bounds.y1,
818       metrics->bounds.x2,metrics->bounds.y2,metrics->origin.x,metrics->origin.y,
819       metrics->pixels_per_em.x,metrics->pixels_per_em.y,
820       metrics->underline_position,metrics->underline_thickness);
821   annotate_info=DestroyDrawInfo(annotate_info);
822   return(status);
823 }
824 \f
825 /*
826 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
827 %                                                                             %
828 %                                                                             %
829 %                                                                             %
830 +   R e n d e r T y p e                                                       %
831 %                                                                             %
832 %                                                                             %
833 %                                                                             %
834 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
835 %
836 %  RenderType() renders text on the image.  It also returns the bounding box of
837 %  the text relative to the image.
838 %
839 %  The format of the RenderType method is:
840 %
841 %      MagickBooleanType RenderType(Image *image,DrawInfo *draw_info,
842 %        const PointInfo *offset,TypeMetric *metrics,ExceptionInfo *exception)
843 %
844 %  A description of each parameter follows:
845 %
846 %    o image: the image.
847 %
848 %    o draw_info: the draw info.
849 %
850 %    o offset: (x,y) location of text relative to image.
851 %
852 %    o metrics: bounding box of text.
853 %
854 %    o exception: return any errors or warnings in this structure.
855 %
856 */
857 static MagickBooleanType RenderType(Image *image,const DrawInfo *draw_info,
858   const PointInfo *offset,TypeMetric *metrics,ExceptionInfo *exception)
859 {
860   const TypeInfo
861     *type_info;
862
863   DrawInfo
864     *annotate_info;
865
866   MagickBooleanType
867     status;
868
869   type_info=(const TypeInfo *) NULL;
870   if (draw_info->font != (char *) NULL)
871     {
872       if (*draw_info->font == '@')
873         {
874           status=RenderFreetype(image,draw_info,draw_info->encoding,offset,
875             metrics,exception);
876           return(status);
877         }
878       if (*draw_info->font == '-')
879         return(RenderX11(image,draw_info,offset,metrics,exception));
880       if (IsPathAccessible(draw_info->font) != MagickFalse)
881         {
882           status=RenderFreetype(image,draw_info,draw_info->encoding,offset,
883             metrics,exception);
884           return(status);
885         }
886       type_info=GetTypeInfo(draw_info->font,exception);
887       if (type_info == (const TypeInfo *) NULL)
888         (void) ThrowMagickException(exception,GetMagickModule(),TypeWarning,
889           "UnableToReadFont","`%s'",draw_info->font);
890     }
891   if ((type_info == (const TypeInfo *) NULL) &&
892       (draw_info->family != (const char *) NULL))
893     {
894       type_info=GetTypeInfoByFamily(draw_info->family,draw_info->style,
895         draw_info->stretch,draw_info->weight,exception);
896       if (type_info == (const TypeInfo *) NULL)
897         (void) ThrowMagickException(exception,GetMagickModule(),TypeWarning,
898           "UnableToReadFont","`%s'",draw_info->family);
899     }
900   if (type_info == (const TypeInfo *) NULL)
901     type_info=GetTypeInfoByFamily("Arial",draw_info->style,
902       draw_info->stretch,draw_info->weight,exception);
903   if (type_info == (const TypeInfo *) NULL)
904     type_info=GetTypeInfoByFamily("Helvetica",draw_info->style,
905       draw_info->stretch,draw_info->weight,exception);
906   if (type_info == (const TypeInfo *) NULL)
907     type_info=GetTypeInfoByFamily("Century Schoolbook",draw_info->style,
908       draw_info->stretch,draw_info->weight,exception);
909   if (type_info == (const TypeInfo *) NULL)
910     type_info=GetTypeInfoByFamily("Sans",draw_info->style,
911       draw_info->stretch,draw_info->weight,exception);
912   if (type_info == (const TypeInfo *) NULL)
913     type_info=GetTypeInfoByFamily((const char *) NULL,draw_info->style,
914       draw_info->stretch,draw_info->weight,exception);
915   if (type_info == (const TypeInfo *) NULL)
916     type_info=GetTypeInfo("*",exception);
917   if (type_info == (const TypeInfo *) NULL)
918     {
919       status=RenderFreetype(image,draw_info,draw_info->encoding,offset,metrics,
920         exception);
921       return(status);
922     }
923   annotate_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
924   annotate_info->face=type_info->face;
925   if (type_info->metrics != (char *) NULL)
926     (void) CloneString(&annotate_info->metrics,type_info->metrics);
927   if (type_info->glyphs != (char *) NULL)
928     (void) CloneString(&annotate_info->font,type_info->glyphs);
929   status=RenderFreetype(image,annotate_info,type_info->encoding,offset,metrics,
930     exception);
931   annotate_info=DestroyDrawInfo(annotate_info);
932   return(status);
933 }
934 \f
935 /*
936 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
937 %                                                                             %
938 %                                                                             %
939 %                                                                             %
940 +   R e n d e r F r e e t y p e                                               %
941 %                                                                             %
942 %                                                                             %
943 %                                                                             %
944 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
945 %
946 %  RenderFreetype() renders text on the image with a Truetype font.  It also
947 %  returns the bounding box of the text relative to the image.
948 %
949 %  The format of the RenderFreetype method is:
950 %
951 %      MagickBooleanType RenderFreetype(Image *image,DrawInfo *draw_info,
952 %        const char *encoding,const PointInfo *offset,TypeMetric *metrics,
953 %        ExceptionInfo *exception)
954 %
955 %  A description of each parameter follows:
956 %
957 %    o image: the image.
958 %
959 %    o draw_info: the draw info.
960 %
961 %    o encoding: the font encoding.
962 %
963 %    o offset: (x,y) location of text relative to image.
964 %
965 %    o metrics: bounding box of text.
966 %
967 %    o exception: return any errors or warnings in this structure.
968 %
969 */
970
971 #if defined(MAGICKCORE_FREETYPE_DELEGATE)
972
973 static int TraceCubicBezier(FT_Vector *p,FT_Vector *q,FT_Vector *to,
974   DrawInfo *draw_info)
975 {
976   AffineMatrix
977     affine;
978
979   char
980     path[MaxTextExtent];
981
982   affine=draw_info->affine;
983   (void) FormatLocaleString(path,MaxTextExtent,
984     "C%g,%g %g,%g %g,%g",affine.tx+p->x/64.0,affine.ty-
985     p->y/64.0,affine.tx+q->x/64.0,affine.ty-q->y/64.0,affine.tx+to->x/64.0,
986     affine.ty-to->y/64.0);
987   (void) ConcatenateString(&draw_info->primitive,path);
988   return(0);
989 }
990
991 static int TraceLineTo(FT_Vector *to,DrawInfo *draw_info)
992 {
993   AffineMatrix
994     affine;
995
996   char
997     path[MaxTextExtent];
998
999   affine=draw_info->affine;
1000   (void) FormatLocaleString(path,MaxTextExtent,"L%g,%g",affine.tx+
1001     to->x/64.0,affine.ty-to->y/64.0);
1002   (void) ConcatenateString(&draw_info->primitive,path);
1003   return(0);
1004 }
1005
1006 static int TraceMoveTo(FT_Vector *to,DrawInfo *draw_info)
1007 {
1008   AffineMatrix
1009     affine;
1010
1011   char
1012     path[MaxTextExtent];
1013
1014   affine=draw_info->affine;
1015   (void) FormatLocaleString(path,MaxTextExtent,"M%g,%g",affine.tx+
1016     to->x/64.0,affine.ty-to->y/64.0);
1017   (void) ConcatenateString(&draw_info->primitive,path);
1018   return(0);
1019 }
1020
1021 static int TraceQuadraticBezier(FT_Vector *control,FT_Vector *to,
1022   DrawInfo *draw_info)
1023 {
1024   AffineMatrix
1025     affine;
1026
1027   char
1028     path[MaxTextExtent];
1029
1030   affine=draw_info->affine;
1031   (void) FormatLocaleString(path,MaxTextExtent,"Q%g,%g %g,%g",
1032     affine.tx+control->x/64.0,affine.ty-control->y/64.0,affine.tx+to->x/64.0,
1033     affine.ty-to->y/64.0);
1034   (void) ConcatenateString(&draw_info->primitive,path);
1035   return(0);
1036 }
1037
1038 static MagickBooleanType RenderFreetype(Image *image,const DrawInfo *draw_info,
1039   const char *encoding,const PointInfo *offset,TypeMetric *metrics,
1040   ExceptionInfo *exception)
1041 {
1042 #if !defined(FT_OPEN_PATHNAME)
1043 #define FT_OPEN_PATHNAME  ft_open_pathname
1044 #endif
1045
1046   typedef struct _GlyphInfo
1047   {
1048     FT_UInt
1049       id;
1050
1051     FT_Vector
1052       origin;
1053
1054     FT_Glyph
1055       image;
1056   } GlyphInfo;
1057
1058   const char
1059     *value;
1060
1061   double
1062     direction;
1063
1064   DrawInfo
1065     *annotate_info;
1066
1067   FT_BBox
1068     bounds;
1069
1070   FT_BitmapGlyph
1071     bitmap;
1072
1073   FT_Encoding
1074     encoding_type;
1075
1076   FT_Error
1077     status;
1078
1079   FT_Face
1080     face;
1081
1082   FT_Int32
1083     flags;
1084
1085   FT_Library
1086     library;
1087
1088   FT_Matrix
1089     affine;
1090
1091   FT_Open_Args
1092     args;
1093
1094   FT_Vector
1095     origin;
1096
1097   GlyphInfo
1098     glyph,
1099     last_glyph;
1100
1101   PointInfo
1102     point,
1103     resolution;
1104
1105   register char
1106     *p;
1107
1108   ssize_t
1109     code,
1110     y;
1111
1112   static FT_Outline_Funcs
1113     OutlineMethods =
1114     {
1115       (FT_Outline_MoveTo_Func) TraceMoveTo,
1116       (FT_Outline_LineTo_Func) TraceLineTo,
1117       (FT_Outline_ConicTo_Func) TraceQuadraticBezier,
1118       (FT_Outline_CubicTo_Func) TraceCubicBezier,
1119       0, 0
1120     };
1121
1122   unsigned char
1123     *utf8;
1124
1125   /*
1126     Initialize Truetype library.
1127   */
1128   status=FT_Init_FreeType(&library);
1129   if (status != 0)
1130     ThrowBinaryException(TypeError,"UnableToInitializeFreetypeLibrary",
1131       image->filename);
1132   args.flags=FT_OPEN_PATHNAME;
1133   if (draw_info->font == (char *) NULL)
1134     args.pathname=ConstantString("helvetica");
1135   else
1136     if (*draw_info->font != '@')
1137       args.pathname=ConstantString(draw_info->font);
1138     else
1139       args.pathname=ConstantString(draw_info->font+1);
1140   face=(FT_Face) NULL;
1141   status=FT_Open_Face(library,&args,(long) draw_info->face,&face);
1142   args.pathname=DestroyString(args.pathname);
1143   if (status != 0)
1144     {
1145       (void) FT_Done_FreeType(library);
1146       (void) ThrowMagickException(exception,GetMagickModule(),TypeError,
1147         "UnableToReadFont","`%s'",draw_info->font);
1148       return(RenderPostscript(image,draw_info,offset,metrics,exception));
1149     }
1150   if ((draw_info->metrics != (char *) NULL) &&
1151       (IsPathAccessible(draw_info->metrics) != MagickFalse))
1152     (void) FT_Attach_File(face,draw_info->metrics);
1153   encoding_type=ft_encoding_unicode;
1154   status=FT_Select_Charmap(face,encoding_type);
1155   if ((status != 0) && (face->num_charmaps != 0))
1156     status=FT_Set_Charmap(face,face->charmaps[0]);
1157   if (encoding != (const char *) NULL)
1158     {
1159       if (LocaleCompare(encoding,"AdobeCustom") == 0)
1160         encoding_type=ft_encoding_adobe_custom;
1161       if (LocaleCompare(encoding,"AdobeExpert") == 0)
1162         encoding_type=ft_encoding_adobe_expert;
1163       if (LocaleCompare(encoding,"AdobeStandard") == 0)
1164         encoding_type=ft_encoding_adobe_standard;
1165       if (LocaleCompare(encoding,"AppleRoman") == 0)
1166         encoding_type=ft_encoding_apple_roman;
1167       if (LocaleCompare(encoding,"BIG5") == 0)
1168         encoding_type=ft_encoding_big5;
1169       if (LocaleCompare(encoding,"GB2312") == 0)
1170         encoding_type=ft_encoding_gb2312;
1171       if (LocaleCompare(encoding,"Johab") == 0)
1172         encoding_type=ft_encoding_johab;
1173 #if defined(ft_encoding_latin_1)
1174       if (LocaleCompare(encoding,"Latin-1") == 0)
1175         encoding_type=ft_encoding_latin_1;
1176 #endif
1177       if (LocaleCompare(encoding,"Latin-2") == 0)
1178         encoding_type=ft_encoding_latin_2;
1179       if (LocaleCompare(encoding,"None") == 0)
1180         encoding_type=ft_encoding_none;
1181       if (LocaleCompare(encoding,"SJIScode") == 0)
1182         encoding_type=ft_encoding_sjis;
1183       if (LocaleCompare(encoding,"Symbol") == 0)
1184         encoding_type=ft_encoding_symbol;
1185       if (LocaleCompare(encoding,"Unicode") == 0)
1186         encoding_type=ft_encoding_unicode;
1187       if (LocaleCompare(encoding,"Wansung") == 0)
1188         encoding_type=ft_encoding_wansung;
1189       status=FT_Select_Charmap(face,encoding_type);
1190       if (status != 0)
1191         ThrowBinaryException(TypeError,"UnrecognizedFontEncoding",encoding);
1192     }
1193   /*
1194     Set text size.
1195   */
1196   resolution.x=DefaultResolution;
1197   resolution.y=DefaultResolution;
1198   if (draw_info->density != (char *) NULL)
1199     {
1200       GeometryInfo
1201         geometry_info;
1202
1203       MagickStatusType
1204         flags;
1205
1206       flags=ParseGeometry(draw_info->density,&geometry_info);
1207       resolution.x=geometry_info.rho;
1208       resolution.y=geometry_info.sigma;
1209       if ((flags & SigmaValue) == 0)
1210         resolution.y=resolution.x;
1211     }
1212   status=FT_Set_Char_Size(face,(FT_F26Dot6) (64.0*draw_info->pointsize),
1213     (FT_F26Dot6) (64.0*draw_info->pointsize),(FT_UInt) resolution.x,
1214     (FT_UInt) resolution.y);
1215   metrics->pixels_per_em.x=face->size->metrics.x_ppem;
1216   metrics->pixels_per_em.y=face->size->metrics.y_ppem;
1217   metrics->ascent=(double) face->size->metrics.ascender/64.0;
1218   metrics->descent=(double) face->size->metrics.descender/64.0;
1219   metrics->width=0;
1220   metrics->origin.x=0;
1221   metrics->origin.y=0;
1222   metrics->height=(double) face->size->metrics.height/64.0;
1223   metrics->max_advance=0.0;
1224   if (face->size->metrics.max_advance > MagickEpsilon)
1225     metrics->max_advance=(double) face->size->metrics.max_advance/64.0;
1226   metrics->bounds.x1=0.0;
1227   metrics->bounds.y1=metrics->descent;
1228   metrics->bounds.x2=metrics->ascent+metrics->descent;
1229   metrics->bounds.y2=metrics->ascent+metrics->descent;
1230   metrics->underline_position=face->underline_position/64.0;
1231   metrics->underline_thickness=face->underline_thickness/64.0;
1232   if ((draw_info->text == (char *) NULL) || (*draw_info->text == '\0'))
1233     {
1234       (void) FT_Done_Face(face);
1235       (void) FT_Done_FreeType(library);
1236       return(MagickTrue);
1237     }
1238   /*
1239     Compute bounding box.
1240   */
1241   if (image->debug != MagickFalse)
1242     (void) LogMagickEvent(AnnotateEvent,GetMagickModule(),"Font %s; "
1243       "font-encoding %s; text-encoding %s; pointsize %g",
1244       draw_info->font != (char *) NULL ? draw_info->font : "none",
1245       encoding != (char *) NULL ? encoding : "none",
1246       draw_info->encoding != (char *) NULL ? draw_info->encoding : "none",
1247       draw_info->pointsize);
1248   flags=FT_LOAD_NO_BITMAP;
1249   value=GetImageProperty(image,"type:hinting");
1250   if ((value != (const char *) NULL) && (LocaleCompare(value,"off") == 0))
1251     flags|=FT_LOAD_NO_HINTING;
1252   glyph.id=0;
1253   glyph.image=NULL;
1254   last_glyph.id=0;
1255   last_glyph.image=NULL;
1256   origin.x=0;
1257   origin.y=0;
1258   affine.xx=65536L;
1259   affine.yx=0L;
1260   affine.xy=0L;
1261   affine.yy=65536L;
1262   if (draw_info->render != MagickFalse)
1263     {
1264       affine.xx=(FT_Fixed) (65536L*draw_info->affine.sx+0.5);
1265       affine.yx=(FT_Fixed) (-65536L*draw_info->affine.rx+0.5);
1266       affine.xy=(FT_Fixed) (-65536L*draw_info->affine.ry+0.5);
1267       affine.yy=(FT_Fixed) (65536L*draw_info->affine.sy+0.5);
1268     }
1269   annotate_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1270   (void) CloneString(&annotate_info->primitive,"path '");
1271   if (draw_info->render != MagickFalse)
1272     {
1273       if (image->storage_class != DirectClass)
1274         (void) SetImageStorageClass(image,DirectClass,exception);
1275       if (image->matte == MagickFalse)
1276         (void) SetImageAlphaChannel(image,OpaqueAlphaChannel,exception);
1277     }
1278   direction=1.0;
1279   if (draw_info->direction == RightToLeftDirection)
1280     direction=(-1.0);
1281   point.x=0.0;
1282   point.y=0.0;
1283   for (p=draw_info->text; GetUTFCode(p) != 0; p+=GetUTFOctets(p))
1284     if (GetUTFCode(p) < 0)
1285       break;
1286   utf8=(unsigned char *) NULL;
1287   if (GetUTFCode(p) == 0)
1288     p=draw_info->text;
1289   else
1290     {
1291       utf8=ConvertLatin1ToUTF8((unsigned char *) draw_info->text);
1292       if (utf8 != (unsigned char *) NULL)
1293         p=(char *) utf8;
1294     }
1295   for (code=0; GetUTFCode(p) != 0; p+=GetUTFOctets(p))
1296   {
1297     /*
1298       Render UTF-8 sequence.
1299     */
1300     glyph.id=FT_Get_Char_Index(face,GetUTFCode(p));
1301     if (glyph.id == 0)
1302       glyph.id=FT_Get_Char_Index(face,'?');
1303     if ((glyph.id != 0) && (last_glyph.id != 0))
1304       {
1305         if (fabs(draw_info->kerning) >= MagickEpsilon)
1306           origin.x+=(FT_Pos) (64.0*direction*draw_info->kerning);
1307         else
1308           if (FT_HAS_KERNING(face))
1309             {
1310               FT_Vector
1311                 kerning;
1312
1313               status=FT_Get_Kerning(face,last_glyph.id,glyph.id,
1314                 ft_kerning_default,&kerning);
1315               if (status == 0)
1316                 origin.x+=(FT_Pos) (direction*kerning.x);
1317             }
1318         }
1319     glyph.origin=origin;
1320     status=FT_Load_Glyph(face,glyph.id,flags);
1321     if (status != 0)
1322       continue;
1323     status=FT_Get_Glyph(face->glyph,&glyph.image);
1324     if (status != 0)
1325       continue;
1326     status=FT_Outline_Get_BBox(&((FT_OutlineGlyph) glyph.image)->outline,
1327       &bounds);
1328     if (status != 0)
1329       continue;
1330     if ((p == draw_info->text) || (bounds.xMin < metrics->bounds.x1))
1331       metrics->bounds.x1=(double) bounds.xMin;
1332     if ((p == draw_info->text) || (bounds.yMin < metrics->bounds.y1))
1333       metrics->bounds.y1=(double) bounds.yMin;
1334     if ((p == draw_info->text) || (bounds.xMax > metrics->bounds.x2))
1335       metrics->bounds.x2=(double) bounds.xMax;
1336     if ((p == draw_info->text) || (bounds.yMax > metrics->bounds.y2))
1337       metrics->bounds.y2=(double) bounds.yMax;
1338     if (draw_info->render != MagickFalse)
1339       if ((draw_info->stroke.alpha != TransparentAlpha) ||
1340           (draw_info->stroke_pattern != (Image *) NULL))
1341         {
1342           /*
1343             Trace the glyph.
1344           */
1345           annotate_info->affine.tx=glyph.origin.x/64.0;
1346           annotate_info->affine.ty=glyph.origin.y/64.0;
1347           (void) FT_Outline_Decompose(&((FT_OutlineGlyph) glyph.image)->
1348             outline,&OutlineMethods,annotate_info);
1349         }
1350     FT_Vector_Transform(&glyph.origin,&affine);
1351     (void) FT_Glyph_Transform(glyph.image,&affine,&glyph.origin);
1352     status=FT_Glyph_To_Bitmap(&glyph.image,ft_render_mode_normal,
1353       (FT_Vector *) NULL,MagickTrue);
1354     if (status != 0)
1355       continue;
1356     bitmap=(FT_BitmapGlyph) glyph.image;
1357     point.x=offset->x+bitmap->left;
1358     if (bitmap->bitmap.pixel_mode == ft_pixel_mode_mono)
1359       point.x=offset->x+(origin.x >> 6);
1360     point.y=offset->y-bitmap->top;
1361     if (draw_info->render != MagickFalse)
1362       {
1363         CacheView
1364           *image_view;
1365
1366         MagickBooleanType
1367           status;
1368
1369         register unsigned char
1370           *p;
1371
1372         /*
1373           Rasterize the glyph.
1374         */
1375         status=MagickTrue;
1376         image_view=AcquireCacheView(image);
1377         p=bitmap->bitmap.buffer;
1378         for (y=0; y < (ssize_t) bitmap->bitmap.rows; y++)
1379         {
1380           MagickBooleanType
1381             active,
1382             sync;
1383
1384           MagickRealType
1385             fill_opacity;
1386
1387           PixelPacket
1388             fill_color;
1389
1390           register Quantum
1391             *restrict q;
1392
1393           register ssize_t
1394             x;
1395
1396           ssize_t
1397             n,
1398             x_offset,
1399             y_offset;
1400
1401           if (status == MagickFalse)
1402             continue;
1403           x_offset=(ssize_t) ceil(point.x-0.5);
1404           y_offset=(ssize_t) ceil(point.y+y-0.5);
1405           if ((y_offset < 0) || (y_offset >= (ssize_t) image->rows))
1406             continue;
1407           q=(Quantum *) NULL;
1408           if ((x_offset < 0) || (x_offset >= (ssize_t) image->columns))
1409             active=MagickFalse;
1410           else
1411             {
1412               q=GetCacheViewAuthenticPixels(image_view,x_offset,y_offset,
1413                 bitmap->bitmap.width,1,exception);
1414               active=q != (Quantum *) NULL ? MagickTrue : MagickFalse;
1415             }
1416           n=y*bitmap->bitmap.pitch-1;
1417           for (x=0; x < (ssize_t) bitmap->bitmap.width; x++)
1418           {
1419             n++;
1420             x_offset++;
1421             if ((x_offset < 0) || (x_offset >= (ssize_t) image->columns))
1422               {
1423                 q+=GetPixelChannels(image);
1424                 continue;
1425               }
1426             if (bitmap->bitmap.pixel_mode != ft_pixel_mode_mono)
1427               fill_opacity=(MagickRealType) (p[n])/(bitmap->bitmap.num_grays-1);
1428             else
1429               fill_opacity=((p[(x >> 3)+y*bitmap->bitmap.pitch] &
1430                 (1 << (~x & 0x07)))) == 0 ? 0.0 : 1.0;
1431             if (draw_info->text_antialias == MagickFalse)
1432               fill_opacity=fill_opacity >= 0.5 ? 1.0 : 0.0;
1433             if (active == MagickFalse)
1434               q=GetCacheViewAuthenticPixels(image_view,x_offset,y_offset,1,1,
1435                 exception);
1436             if (q == (Quantum *) NULL)
1437               {
1438                 q+=GetPixelChannels(image);
1439                 continue;
1440               }
1441             (void) GetFillColor(draw_info,x_offset,y_offset,&fill_color);
1442             fill_opacity=fill_opacity*fill_color.alpha;
1443             CompositePixelOver(image,&fill_color,fill_opacity,q,
1444               GetPixelAlpha(image,q),q);
1445             if (active == MagickFalse)
1446               {
1447                 sync=SyncCacheViewAuthenticPixels(image_view,exception);
1448                 if (sync == MagickFalse)
1449                   status=MagickFalse;
1450               }
1451             q+=GetPixelChannels(image);
1452           }
1453           sync=SyncCacheViewAuthenticPixels(image_view,exception);
1454           if (sync == MagickFalse)
1455             status=MagickFalse;
1456         }
1457         image_view=DestroyCacheView(image_view);
1458       }
1459     if ((bitmap->left+bitmap->bitmap.width) > metrics->width)
1460       metrics->width=bitmap->left+bitmap->bitmap.width;
1461     if ((fabs(draw_info->interword_spacing) >= MagickEpsilon) &&
1462         (IsUTFSpace(GetUTFCode(p)) != MagickFalse) &&
1463         (IsUTFSpace(code) == MagickFalse))
1464       origin.x+=(FT_Pos) (64.0*direction*draw_info->interword_spacing);
1465     else
1466       origin.x+=(FT_Pos) (direction*face->glyph->advance.x);
1467     metrics->origin.x=(double) origin.x;
1468     metrics->origin.y=(double) origin.y;
1469     if (last_glyph.id != 0)
1470       FT_Done_Glyph(last_glyph.image);
1471     last_glyph=glyph;
1472     code=GetUTFCode(p);
1473   }
1474   if (utf8 != (unsigned char *) NULL)
1475     utf8=(unsigned char *) RelinquishMagickMemory(utf8);
1476   if (last_glyph.id != 0)
1477     FT_Done_Glyph(last_glyph.image);
1478   if ((draw_info->stroke.alpha != TransparentAlpha) ||
1479       (draw_info->stroke_pattern != (Image *) NULL))
1480     {
1481       if (draw_info->render != MagickFalse)
1482         {
1483           /*
1484             Draw text stroke.
1485           */
1486           annotate_info->linejoin=RoundJoin;
1487           annotate_info->affine.tx=offset->x;
1488           annotate_info->affine.ty=offset->y;
1489           (void) ConcatenateString(&annotate_info->primitive,"'");
1490           (void) DrawImage(image,annotate_info,exception);
1491         }
1492       }
1493   /*
1494     Determine font metrics.
1495   */
1496   glyph.id=FT_Get_Char_Index(face,'_');
1497   glyph.origin=origin;
1498   status=FT_Load_Glyph(face,glyph.id,flags);
1499   if (status == 0)
1500     {
1501       status=FT_Get_Glyph(face->glyph,&glyph.image);
1502       if (status == 0)
1503         {
1504           status=FT_Outline_Get_BBox(&((FT_OutlineGlyph) glyph.image)->
1505             outline,&bounds);
1506           if (status == 0)
1507             {
1508               FT_Vector_Transform(&glyph.origin,&affine);
1509               (void) FT_Glyph_Transform(glyph.image,&affine,&glyph.origin);
1510               status=FT_Glyph_To_Bitmap(&glyph.image,ft_render_mode_normal,
1511                 (FT_Vector *) NULL,MagickTrue);
1512               bitmap=(FT_BitmapGlyph) glyph.image;
1513               if (bitmap->left > metrics->width)
1514                 metrics->width=bitmap->left;
1515             }
1516         }
1517       FT_Done_Glyph(glyph.image);
1518     }
1519   metrics->width-=metrics->bounds.x1/64.0;
1520   metrics->bounds.x1/=64.0;
1521   metrics->bounds.y1/=64.0;
1522   metrics->bounds.x2/=64.0;
1523   metrics->bounds.y2/=64.0;
1524   metrics->origin.x/=64.0;
1525   metrics->origin.y/=64.0;
1526   /*
1527     Relinquish resources.
1528   */
1529   annotate_info=DestroyDrawInfo(annotate_info);
1530   (void) FT_Done_Face(face);
1531   (void) FT_Done_FreeType(library);
1532   return(MagickTrue);
1533 }
1534 #else
1535 static MagickBooleanType RenderFreetype(Image *image,const DrawInfo *draw_info,
1536   const char *magick_unused(encoding),const PointInfo *offset,
1537   TypeMetric *metrics,ExceptionInfo *exception)
1538 {
1539   (void) ThrowMagickException(exception,GetMagickModule(),
1540     MissingDelegateWarning,"DelegateLibrarySupportNotBuiltIn","`%s' (Freetype)",
1541     draw_info->font != (char *) NULL ? draw_info->font : "none");
1542   return(RenderPostscript(image,draw_info,offset,metrics));
1543 }
1544 #endif
1545 \f
1546 /*
1547 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1548 %                                                                             %
1549 %                                                                             %
1550 %                                                                             %
1551 +   R e n d e r P o s t s c r i p t                                           %
1552 %                                                                             %
1553 %                                                                             %
1554 %                                                                             %
1555 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1556 %
1557 %  RenderPostscript() renders text on the image with a Postscript font.  It
1558 %  also returns the bounding box of the text relative to the image.
1559 %
1560 %  The format of the RenderPostscript method is:
1561 %
1562 %      MagickBooleanType RenderPostscript(Image *image,DrawInfo *draw_info,
1563 %        const PointInfo *offset,TypeMetric *metrics,ExceptionInfo *exception)
1564 %
1565 %  A description of each parameter follows:
1566 %
1567 %    o image: the image.
1568 %
1569 %    o draw_info: the draw info.
1570 %
1571 %    o offset: (x,y) location of text relative to image.
1572 %
1573 %    o metrics: bounding box of text.
1574 %
1575 %    o exception: return any errors or warnings in this structure.
1576 %
1577 */
1578
1579 static inline size_t MagickMin(const size_t x,const size_t y)
1580 {
1581   if (x < y)
1582     return(x);
1583   return(y);
1584 }
1585
1586 static char *EscapeParenthesis(const char *text)
1587 {
1588   char
1589     *buffer;
1590
1591   register char
1592     *p;
1593
1594   register ssize_t
1595     i;
1596
1597   size_t
1598     escapes;
1599
1600   escapes=0;
1601   buffer=AcquireString(text);
1602   p=buffer;
1603   for (i=0; i < (ssize_t) MagickMin(strlen(text),MaxTextExtent-escapes-1); i++)
1604   {
1605     if ((text[i] == '(') || (text[i] == ')'))
1606       {
1607         *p++='\\';
1608         escapes++;
1609       }
1610     *p++=text[i];
1611   }
1612   *p='\0';
1613   return(buffer);
1614 }
1615
1616 static MagickBooleanType RenderPostscript(Image *image,
1617   const DrawInfo *draw_info,const PointInfo *offset,TypeMetric *metrics,
1618   ExceptionInfo *exception)
1619 {
1620   char
1621     filename[MaxTextExtent],
1622     geometry[MaxTextExtent],
1623     *text;
1624
1625   FILE
1626     *file;
1627
1628   Image
1629     *annotate_image;
1630
1631   ImageInfo
1632     *annotate_info;
1633
1634   int
1635     unique_file;
1636
1637   MagickBooleanType
1638     identity;
1639
1640   PointInfo
1641     extent,
1642     point,
1643     resolution;
1644
1645   register ssize_t
1646     i;
1647
1648   ssize_t
1649     y;
1650
1651   /*
1652     Render label with a Postscript font.
1653   */
1654   if (image->debug != MagickFalse)
1655     (void) LogMagickEvent(AnnotateEvent,GetMagickModule(),
1656       "Font %s; pointsize %g",draw_info->font != (char *) NULL ?
1657       draw_info->font : "none",draw_info->pointsize);
1658   file=(FILE *) NULL;
1659   unique_file=AcquireUniqueFileResource(filename);
1660   if (unique_file != -1)
1661     file=fdopen(unique_file,"wb");
1662   if ((unique_file == -1) || (file == (FILE *) NULL))
1663     {
1664       ThrowFileException(exception,FileOpenError,"UnableToOpenFile",filename);
1665       return(MagickFalse);
1666     }
1667   (void) FormatLocaleFile(file,"%%!PS-Adobe-3.0\n");
1668   (void) FormatLocaleFile(file,"/ReencodeType\n");
1669   (void) FormatLocaleFile(file,"{\n");
1670   (void) FormatLocaleFile(file,"  findfont dup length\n");
1671   (void) FormatLocaleFile(file,
1672     "  dict begin { 1 index /FID ne {def} {pop pop} ifelse } forall\n");
1673   (void) FormatLocaleFile(file,
1674     "  /Encoding ISOLatin1Encoding def currentdict end definefont pop\n");
1675   (void) FormatLocaleFile(file,"} bind def\n");
1676   /*
1677     Sample to compute bounding box.
1678   */
1679   identity=(fabs(draw_info->affine.sx-draw_info->affine.sy) < MagickEpsilon) &&
1680     (fabs(draw_info->affine.rx) < MagickEpsilon) &&
1681     (fabs(draw_info->affine.ry) < MagickEpsilon) ? MagickTrue : MagickFalse;
1682   extent.x=0.0;
1683   extent.y=0.0;
1684   for (i=0; i <= (ssize_t) (strlen(draw_info->text)+2); i++)
1685   {
1686     point.x=fabs(draw_info->affine.sx*i*draw_info->pointsize+
1687       draw_info->affine.ry*2.0*draw_info->pointsize);
1688     point.y=fabs(draw_info->affine.rx*i*draw_info->pointsize+
1689       draw_info->affine.sy*2.0*draw_info->pointsize);
1690     if (point.x > extent.x)
1691       extent.x=point.x;
1692     if (point.y > extent.y)
1693       extent.y=point.y;
1694   }
1695   (void) FormatLocaleFile(file,"%g %g moveto\n",identity  != MagickFalse ? 0.0 :
1696     extent.x/2.0,extent.y/2.0);
1697   (void) FormatLocaleFile(file,"%g %g scale\n",draw_info->pointsize,
1698     draw_info->pointsize);
1699   if ((draw_info->font == (char *) NULL) || (*draw_info->font == '\0') ||
1700       (strchr(draw_info->font,'/') != (char *) NULL))
1701     (void) FormatLocaleFile(file,
1702       "/Times-Roman-ISO dup /Times-Roman ReencodeType findfont setfont\n");
1703   else
1704     (void) FormatLocaleFile(file,
1705       "/%s-ISO dup /%s ReencodeType findfont setfont\n",draw_info->font,
1706       draw_info->font);
1707   (void) FormatLocaleFile(file,"[%g %g %g %g 0 0] concat\n",
1708     draw_info->affine.sx,-draw_info->affine.rx,-draw_info->affine.ry,
1709     draw_info->affine.sy);
1710   text=EscapeParenthesis(draw_info->text);
1711   if (identity == MagickFalse)
1712     (void) FormatLocaleFile(file,"(%s) stringwidth pop -0.5 mul -0.5 rmoveto\n",
1713       text);
1714   (void) FormatLocaleFile(file,"(%s) show\n",text);
1715   text=DestroyString(text);
1716   (void) FormatLocaleFile(file,"showpage\n");
1717   (void) fclose(file);
1718   (void) FormatLocaleString(geometry,MaxTextExtent,"%.20gx%.20g+0+0!",
1719     floor(extent.x+0.5),floor(extent.y+0.5));
1720   annotate_info=AcquireImageInfo();
1721   (void) FormatLocaleString(annotate_info->filename,MaxTextExtent,"ps:%s",
1722     filename);
1723   (void) CloneString(&annotate_info->page,geometry);
1724   if (draw_info->density != (char *) NULL)
1725     (void) CloneString(&annotate_info->density,draw_info->density);
1726   annotate_info->antialias=draw_info->text_antialias;
1727   annotate_image=ReadImage(annotate_info,exception);
1728   CatchException(exception);
1729   annotate_info=DestroyImageInfo(annotate_info);
1730   (void) RelinquishUniqueFileResource(filename);
1731   if (annotate_image == (Image *) NULL)
1732     return(MagickFalse);
1733   resolution.x=DefaultResolution;
1734   resolution.y=DefaultResolution;
1735   if (draw_info->density != (char *) NULL)
1736     {
1737       GeometryInfo
1738         geometry_info;
1739
1740       MagickStatusType
1741         flags;
1742
1743       flags=ParseGeometry(draw_info->density,&geometry_info);
1744       resolution.x=geometry_info.rho;
1745       resolution.y=geometry_info.sigma;
1746       if ((flags & SigmaValue) == 0)
1747         resolution.y=resolution.x;
1748     }
1749   if (identity == MagickFalse)
1750     (void) TransformImage(&annotate_image,"0x0",(char *) NULL);
1751   else
1752     {
1753       RectangleInfo
1754         crop_info;
1755
1756       crop_info=GetImageBoundingBox(annotate_image,exception);
1757       crop_info.height=(size_t) ((resolution.y/DefaultResolution)*
1758         ExpandAffine(&draw_info->affine)*draw_info->pointsize+0.5);
1759       crop_info.y=(ssize_t) ceil((resolution.y/DefaultResolution)*extent.y/8.0-
1760         0.5);
1761       (void) FormatLocaleString(geometry,MaxTextExtent,
1762         "%.20gx%.20g%+.20g%+.20g",(double) crop_info.width,(double)
1763         crop_info.height,(double) crop_info.x,(double) crop_info.y);
1764       (void) TransformImage(&annotate_image,geometry,(char *) NULL);
1765     }
1766   metrics->pixels_per_em.x=(resolution.y/DefaultResolution)*
1767     ExpandAffine(&draw_info->affine)*draw_info->pointsize;
1768   metrics->pixels_per_em.y=metrics->pixels_per_em.x;
1769   metrics->ascent=metrics->pixels_per_em.x;
1770   metrics->descent=metrics->pixels_per_em.y/-5.0;
1771   metrics->width=(double) annotate_image->columns/
1772     ExpandAffine(&draw_info->affine);
1773   metrics->height=1.152*metrics->pixels_per_em.x;
1774   metrics->max_advance=metrics->pixels_per_em.x;
1775   metrics->bounds.x1=0.0;
1776   metrics->bounds.y1=metrics->descent;
1777   metrics->bounds.x2=metrics->ascent+metrics->descent;
1778   metrics->bounds.y2=metrics->ascent+metrics->descent;
1779   metrics->underline_position=(-2.0);
1780   metrics->underline_thickness=1.0;
1781   if (draw_info->render == MagickFalse)
1782     {
1783       annotate_image=DestroyImage(annotate_image);
1784       return(MagickTrue);
1785     }
1786   if (draw_info->fill.alpha != TransparentAlpha)
1787     {
1788       MagickBooleanType
1789         sync;
1790
1791       PixelPacket
1792         fill_color;
1793
1794       CacheView
1795         *annotate_view;
1796
1797       /*
1798         Render fill color.
1799       */
1800       if (image->matte == MagickFalse)
1801         (void) SetImageAlphaChannel(image,OpaqueAlphaChannel,exception);
1802       if (annotate_image->matte == MagickFalse)
1803         (void) SetImageAlphaChannel(annotate_image,OpaqueAlphaChannel,
1804           exception);
1805       fill_color=draw_info->fill;
1806       annotate_view=AcquireCacheView(annotate_image);
1807       for (y=0; y < (ssize_t) annotate_image->rows; y++)
1808       {
1809         register ssize_t
1810           x;
1811
1812         register Quantum
1813           *restrict q;
1814
1815         q=GetCacheViewAuthenticPixels(annotate_view,0,y,annotate_image->columns,
1816           1,exception);
1817         if (q == (Quantum *) NULL)
1818           break;
1819         for (x=0; x < (ssize_t) annotate_image->columns; x++)
1820         {
1821           (void) GetFillColor(draw_info,x,y,&fill_color);
1822           SetPixelAlpha(annotate_image,ClampToQuantum((((MagickRealType)
1823             GetPixelIntensity(annotate_image,q)*fill_color.alpha)/
1824             QuantumRange)),q);
1825           SetPixelRed(annotate_image,fill_color.red,q);
1826           SetPixelGreen(annotate_image,fill_color.green,q);
1827           SetPixelBlue(annotate_image,fill_color.blue,q);
1828           q+=GetPixelChannels(annotate_image);
1829         }
1830         sync=SyncCacheViewAuthenticPixels(annotate_view,exception);
1831         if (sync == MagickFalse)
1832           break;
1833       }
1834       annotate_view=DestroyCacheView(annotate_view);
1835       (void) CompositeImage(image,OverCompositeOp,annotate_image,
1836         (ssize_t) ceil(offset->x-0.5),(ssize_t) ceil(offset->y-(metrics->ascent+
1837         metrics->descent)-0.5));
1838     }
1839   annotate_image=DestroyImage(annotate_image);
1840   return(MagickTrue);
1841 }
1842 \f
1843 /*
1844 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1845 %                                                                             %
1846 %                                                                             %
1847 %                                                                             %
1848 +   R e n d e r X 1 1                                                         %
1849 %                                                                             %
1850 %                                                                             %
1851 %                                                                             %
1852 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1853 %
1854 %  RenderX11() renders text on the image with an X11 font.  It also returns the
1855 %  bounding box of the text relative to the image.
1856 %
1857 %  The format of the RenderX11 method is:
1858 %
1859 %      MagickBooleanType RenderX11(Image *image,DrawInfo *draw_info,
1860 %        const PointInfo *offset,TypeMetric *metrics,ExceptionInfo *exception)
1861 %
1862 %  A description of each parameter follows:
1863 %
1864 %    o image: the image.
1865 %
1866 %    o draw_info: the draw info.
1867 %
1868 %    o offset: (x,y) location of text relative to image.
1869 %
1870 %    o metrics: bounding box of text.
1871 %
1872 %    o exception: return any errors or warnings in this structure.
1873 %
1874 */
1875 #if defined(MAGICKCORE_X11_DELEGATE)
1876 static MagickBooleanType RenderX11(Image *image,const DrawInfo *draw_info,
1877   const PointInfo *offset,TypeMetric *metrics,ExceptionInfo *exception)
1878 {
1879   MagickBooleanType
1880     status;
1881
1882   static DrawInfo
1883     cache_info;
1884
1885   static Display
1886     *display = (Display *) NULL;
1887
1888   static XAnnotateInfo
1889     annotate_info;
1890
1891   static XFontStruct
1892     *font_info;
1893
1894   static XPixelInfo
1895     pixel;
1896
1897   static XResourceInfo
1898     resource_info;
1899
1900   static XrmDatabase
1901     resource_database;
1902
1903   static XStandardColormap
1904     *map_info;
1905
1906   static XVisualInfo
1907     *visual_info;
1908
1909   size_t
1910     height,
1911     width;
1912
1913   if (annotate_semaphore == (SemaphoreInfo *) NULL)
1914     AcquireSemaphoreInfo(&annotate_semaphore);
1915   LockSemaphoreInfo(annotate_semaphore);
1916   if (display == (Display *) NULL)
1917     {
1918       const char
1919         *client_name;
1920
1921       ImageInfo
1922         *image_info;
1923
1924       /*
1925         Open X server connection.
1926       */
1927       display=XOpenDisplay(draw_info->server_name);
1928       if (display == (Display *) NULL)
1929         {
1930           ThrowXWindowException(XServerError,"UnableToOpenXServer",
1931             draw_info->server_name);
1932           return(MagickFalse);
1933         }
1934       /*
1935         Get user defaults from X resource database.
1936       */
1937       (void) XSetErrorHandler(XError);
1938       image_info=AcquireImageInfo();
1939       client_name=GetClientName();
1940       resource_database=XGetResourceDatabase(display,client_name);
1941       XGetResourceInfo(image_info,resource_database,client_name,&resource_info);
1942       resource_info.close_server=MagickFalse;
1943       resource_info.colormap=PrivateColormap;
1944       resource_info.font=AcquireString(draw_info->font);
1945       resource_info.background_color=AcquireString("#ffffffffffff");
1946       resource_info.foreground_color=AcquireString("#000000000000");
1947       map_info=XAllocStandardColormap();
1948       if (map_info == (XStandardColormap *) NULL)
1949         {
1950           ThrowXWindowException(ResourceLimitError,"MemoryAllocationFailed",
1951             image->filename);
1952           return(MagickFalse);
1953         }
1954       /*
1955         Initialize visual info.
1956       */
1957       visual_info=XBestVisualInfo(display,map_info,&resource_info);
1958       if (visual_info == (XVisualInfo *) NULL)
1959         {
1960           ThrowXWindowException(XServerError,"UnableToGetVisual",
1961             image->filename);
1962           return(MagickFalse);
1963         }
1964       map_info->colormap=(Colormap) NULL;
1965       pixel.pixels=(unsigned long *) NULL;
1966       /*
1967         Initialize Standard Colormap info.
1968       */
1969       XGetMapInfo(visual_info,XDefaultColormap(display,visual_info->screen),
1970         map_info);
1971       XGetPixelInfo(display,visual_info,map_info,&resource_info,(Image *) NULL,
1972         &pixel);
1973       pixel.annotate_context=XDefaultGC(display,visual_info->screen);
1974       /*
1975         Initialize font info.
1976       */
1977       font_info=XBestFont(display,&resource_info,MagickFalse);
1978       if (font_info == (XFontStruct *) NULL)
1979         {
1980           ThrowXWindowException(XServerError,"UnableToLoadFont",
1981             draw_info->font);
1982           return(MagickFalse);
1983         }
1984       if ((map_info == (XStandardColormap *) NULL) ||
1985           (visual_info == (XVisualInfo *) NULL) ||
1986           (font_info == (XFontStruct *) NULL))
1987         {
1988           XFreeResources(display,visual_info,map_info,&pixel,font_info,
1989             &resource_info,(XWindowInfo *) NULL);
1990           ThrowXWindowException(XServerError,"UnableToLoadFont",
1991             image->filename);
1992           return(MagickFalse);
1993         }
1994       cache_info=(*draw_info);
1995     }
1996   UnlockSemaphoreInfo(annotate_semaphore);
1997   /*
1998     Initialize annotate info.
1999   */
2000   XGetAnnotateInfo(&annotate_info);
2001   annotate_info.stencil=ForegroundStencil;
2002   if (cache_info.font != draw_info->font)
2003     {
2004       /*
2005         Type name has changed.
2006       */
2007       (void) XFreeFont(display,font_info);
2008       (void) CloneString(&resource_info.font,draw_info->font);
2009       font_info=XBestFont(display,&resource_info,MagickFalse);
2010       if (font_info == (XFontStruct *) NULL)
2011         {
2012           ThrowXWindowException(XServerError,"UnableToLoadFont",
2013             draw_info->font);
2014           return(MagickFalse);
2015         }
2016     }
2017   if (image->debug != MagickFalse)
2018     (void) LogMagickEvent(AnnotateEvent,GetMagickModule(),
2019       "Font %s; pointsize %g",draw_info->font != (char *) NULL ?
2020       draw_info->font : "none",draw_info->pointsize);
2021   cache_info=(*draw_info);
2022   annotate_info.font_info=font_info;
2023   annotate_info.text=(char *) draw_info->text;
2024   annotate_info.width=(unsigned int) XTextWidth(font_info,draw_info->text,
2025     (int) strlen(draw_info->text));
2026   annotate_info.height=(unsigned int) font_info->ascent+font_info->descent;
2027   metrics->pixels_per_em.x=(double) font_info->max_bounds.width;
2028   metrics->pixels_per_em.y=(double) font_info->ascent+font_info->descent;
2029   metrics->ascent=(double) font_info->ascent+4;
2030   metrics->descent=(double) (-font_info->descent);
2031   metrics->width=annotate_info.width/ExpandAffine(&draw_info->affine);
2032   metrics->height=font_info->ascent+font_info->descent;
2033   metrics->max_advance=(double) font_info->max_bounds.width;
2034   metrics->bounds.x1=0.0;
2035   metrics->bounds.y1=metrics->descent;
2036   metrics->bounds.x2=metrics->ascent+metrics->descent;
2037   metrics->bounds.y2=metrics->ascent+metrics->descent;
2038   metrics->underline_position=(-2.0);
2039   metrics->underline_thickness=1.0;
2040   if (draw_info->render == MagickFalse)
2041     return(MagickTrue);
2042   if (draw_info->fill.alpha == TransparentAlpha)
2043     return(MagickTrue);
2044   /*
2045     Render fill color.
2046   */
2047   width=annotate_info.width;
2048   height=annotate_info.height;
2049   if ((fabs(draw_info->affine.rx) >= MagickEpsilon) ||
2050       (fabs(draw_info->affine.ry) >= MagickEpsilon))
2051     {
2052       if ((fabs(draw_info->affine.sx-draw_info->affine.sy) < MagickEpsilon) &&
2053           (fabs(draw_info->affine.rx+draw_info->affine.ry) < MagickEpsilon))
2054         annotate_info.degrees=(double) (180.0/MagickPI)*
2055           atan2(draw_info->affine.rx,draw_info->affine.sx);
2056     }
2057   (void) FormatLocaleString(annotate_info.geometry,MaxTextExtent,
2058     "%.20gx%.20g%+.20g%+.20g",(double) width,(double) height,
2059     ceil(offset->x-0.5),ceil(offset->y-metrics->ascent-metrics->descent+
2060     draw_info->interline_spacing-0.5));
2061   pixel.pen_color.red=ScaleQuantumToShort(draw_info->fill.red);
2062   pixel.pen_color.green=ScaleQuantumToShort(draw_info->fill.green);
2063   pixel.pen_color.blue=ScaleQuantumToShort(draw_info->fill.blue);
2064   status=XAnnotateImage(display,&pixel,&annotate_info,image);
2065   if (status == 0)
2066     {
2067       ThrowXWindowException(ResourceLimitError,"MemoryAllocationFailed",
2068         image->filename);
2069       return(MagickFalse);
2070     }
2071   return(MagickTrue);
2072 }
2073 #else
2074 static MagickBooleanType RenderX11(Image *image,const DrawInfo *draw_info,
2075   const PointInfo *offset,TypeMetric *metrics,ExceptionInfo *exception)
2076 {
2077   (void) draw_info;
2078   (void) offset;
2079   (void) metrics;
2080   (void) ThrowMagickException(exception,GetMagickModule(),
2081     MissingDelegateError,"DelegateLibrarySupportNotBuiltIn","`%s' (X11)",
2082     image->filename);
2083   return(MagickFalse);
2084 }
2085 #endif