2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 % PPPP AAA N N GGGG OOO %
8 % PPPP AAAAA N N N G GGG O O %
9 % P M A A N NN G G O O %
10 % P A A N N GGGG OOO %
13 % Read Pango Markup Language Format %
20 % Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
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. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42 #include "MagickCore/studio.h"
43 #include "MagickCore/annotate.h"
44 #include "MagickCore/blob.h"
45 #include "MagickCore/blob-private.h"
46 #include "MagickCore/composite-private.h"
47 #include "MagickCore/draw.h"
48 #include "MagickCore/draw-private.h"
49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
51 #include "MagickCore/image.h"
52 #include "MagickCore/image-private.h"
53 #include "MagickCore/list.h"
54 #include "MagickCore/magick.h"
55 #include "MagickCore/memory_.h"
56 #include "MagickCore/module.h"
57 #include "MagickCore/monitor.h"
58 #include "MagickCore/monitor-private.h"
59 #include "MagickCore/option.h"
60 #include "MagickCore/pixel-accessor.h"
61 #include "MagickCore/property.h"
62 #include "MagickCore/quantum-private.h"
63 #include "MagickCore/static.h"
64 #include "MagickCore/string_.h"
65 #include "MagickCore/string-private.h"
66 #include "MagickCore/token.h"
67 #include "MagickCore/utility.h"
68 #if defined(MAGICKCORE_PANGOCAIRO_DELEGATE)
69 #include <pango/pango.h>
70 #include <pango/pangocairo.h>
71 #include <pango/pango-features.h>
74 #if defined(MAGICKCORE_PANGOCAIRO_DELEGATE)
76 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80 % R e a d P A N G O I m a g e %
84 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
86 % ReadPANGOImage() reads an image in the Pango Markup Language Format.
88 % The format of the ReadPANGOImage method is:
90 % Image *ReadPANGOImage(const ImageInfo *image_info,
91 % ExceptionInfo *exception)
93 % A description of each parameter follows:
95 % o image_info: the image info.
97 % o exception: return any errors or warnings in this structure.
100 static Image *ReadPANGOImage(const ImageInfo *image_info,
101 ExceptionInfo *exception)
152 register unsigned char
165 Initialize Image structure.
167 assert(image_info != (const ImageInfo *) NULL);
168 assert(image_info->signature == MagickSignature);
169 if (image_info->debug != MagickFalse)
170 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
171 image_info->filename);
172 assert(exception != (ExceptionInfo *) NULL);
173 assert(exception->signature == MagickSignature);
174 image=AcquireImage(image_info,exception);
175 (void) ResetImagePage(image,"0x0+0+0");
179 option=GetImageOption(image_info,"filename");
180 if (option == (const char *) NULL)
181 property=InterpretImageProperties(image_info,image,image_info->filename,
184 if (LocaleNCompare(option,"pango:",6) == 0)
185 property=InterpretImageProperties(image_info,image,option+6,exception);
187 property=InterpretImageProperties(image_info,image,option,exception);
188 (void) SetImageProperty(image,"caption",property,exception);
189 property=DestroyString(property);
190 caption=ConstantString(GetImageProperty(image,"caption",exception));
194 fontmap=pango_cairo_font_map_new();
195 pango_cairo_font_map_set_resolution(PANGO_CAIRO_FONT_MAP(fontmap),
196 image->resolution.x);
197 font_options=cairo_font_options_create();
198 option=GetImageOption(image_info,"pango:hinting");
199 if (option != (const char *) NULL)
201 if (LocaleCompare(option,"none") != 0)
202 cairo_font_options_set_hint_style(font_options,CAIRO_HINT_STYLE_NONE);
203 if (LocaleCompare(option,"full") != 0)
204 cairo_font_options_set_hint_style(font_options,CAIRO_HINT_STYLE_FULL);
206 context=pango_font_map_create_context(fontmap);
207 pango_cairo_context_set_font_options(context,font_options);
208 cairo_font_options_destroy(font_options);
209 option=GetImageOption(image_info,"pango:language");
210 if (option != (const char *) NULL)
211 pango_context_set_language(context,pango_language_from_string(option));
212 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);
213 pango_context_set_base_dir(context,draw_info->direction ==
214 RightToLeftDirection ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR);
215 switch (draw_info->gravity)
219 gravity=PANGO_GRAVITY_NORTH;
222 case NorthWestGravity:
224 case SouthWestGravity:
226 gravity=PANGO_GRAVITY_WEST;
229 case NorthEastGravity:
231 case SouthEastGravity:
233 gravity=PANGO_GRAVITY_EAST;
238 gravity=PANGO_GRAVITY_SOUTH;
243 gravity=PANGO_GRAVITY_AUTO;
247 pango_context_set_base_gravity(context,gravity);
248 option=GetImageOption(image_info,"pango:gravity-hint");
249 if (option != (const char *) NULL)
251 if (LocaleCompare(option,"line") == 0)
252 pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_LINE);
253 if (LocaleCompare(option,"natural") == 0)
254 pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_NATURAL);
255 if (LocaleCompare(option,"strong") == 0)
256 pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_STRONG);
261 layout=pango_layout_new(context);
262 option=GetImageOption(image_info,"pango:auto-dir");
263 if (option != (const char *) NULL)
264 pango_layout_set_auto_dir(layout,1);
265 option=GetImageOption(image_info,"pango:ellipsize");
266 if (option != (const char *) NULL)
268 if (LocaleCompare(option,"end") == 0)
269 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_END);
270 if (LocaleCompare(option,"middle") == 0)
271 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_MIDDLE);
272 if (LocaleCompare(option,"none") == 0)
273 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_NONE);
274 if (LocaleCompare(option,"start") == 0)
275 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_START);
277 option=GetImageOption(image_info,"pango:justify");
278 if (IfMagickTrue(IsStringTrue(option)))
279 pango_layout_set_justify(layout,1);
280 option=GetImageOption(image_info,"pango:single-paragraph");
281 if (IfMagickTrue(IsStringTrue(option)))
282 pango_layout_set_single_paragraph_mode(layout,1);
283 option=GetImageOption(image_info,"pango:wrap");
284 if (option != (const char *) NULL)
286 if (LocaleCompare(option,"char") == 0)
287 pango_layout_set_wrap(layout,PANGO_WRAP_CHAR);
288 if (LocaleCompare(option,"word") == 0)
289 pango_layout_set_wrap(layout,PANGO_WRAP_WORD);
290 if (LocaleCompare(option,"word-char") == 0)
291 pango_layout_set_wrap(layout,PANGO_WRAP_WORD_CHAR);
293 option=GetImageOption(image_info,"pango:indent");
294 if (option != (const char *) NULL)
295 pango_layout_set_indent(layout,(int) ((StringToLong(option)*
296 image->resolution.x*PANGO_SCALE+36)/72.0+0.5));
297 switch (draw_info->align)
299 case CenterAlign: align=PANGO_ALIGN_CENTER; break;
300 case RightAlign: align=PANGO_ALIGN_RIGHT; break;
301 case LeftAlign: align=PANGO_ALIGN_LEFT; break;
304 if (draw_info->gravity == CenterGravity)
306 align=PANGO_ALIGN_CENTER;
309 align=PANGO_ALIGN_LEFT;
313 if ((align != PANGO_ALIGN_CENTER) &&
314 (draw_info->direction == RightToLeftDirection))
315 align=(PangoAlignment) (PANGO_ALIGN_LEFT+PANGO_ALIGN_RIGHT-align);
316 pango_layout_set_alignment(layout,align);
317 if (draw_info->font != (char *) NULL)
325 description=pango_font_description_from_string(draw_info->font);
326 pango_font_description_set_size(description,(int) (PANGO_SCALE*
327 draw_info->pointsize+0.5));
328 pango_layout_set_font_description(layout,description);
329 pango_font_description_free(description);
331 option=GetImageOption(image_info,"pango:markup");
332 if ((option != (const char *) NULL) && (IsStringTrue(option) == MagickFalse))
333 pango_layout_set_text(layout,caption,-1);
339 error=(GError *) NULL;
340 if (pango_parse_markup(caption,-1,0,NULL,NULL,NULL,&error) == 0)
341 (void) ThrowMagickException(exception,GetMagickModule(),CoderError,
342 error->message,"`%s'",image_info->filename);
343 pango_layout_set_markup(layout,caption,-1);
345 pango_layout_context_changed(layout);
348 if (image_info->page != (char *) NULL)
349 (void) ParseAbsoluteGeometry(image_info->page,&page);
350 if (image->columns == 0)
352 pango_layout_get_pixel_extents(layout,NULL,&extent);
353 image->columns=extent.x+extent.width+2*page.x;
357 image->columns-=2*page.x;
358 pango_layout_set_width(layout,(int) ((PANGO_SCALE*image->columns*
359 image->resolution.x+36.0)/72.0+0.5));
361 if (image->rows == 0)
363 pango_layout_get_pixel_extents(layout,NULL,&extent);
364 image->rows=extent.y+extent.height+2*page.y;
368 image->rows-=2*page.y;
369 pango_layout_set_height(layout,(int) ((PANGO_SCALE*image->rows*
370 image->resolution.y+36.0)/72.0+0.5));
375 stride=(size_t) cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32,
377 pixels=(unsigned char *) AcquireQuantumMemory(image->rows,stride*
379 if (pixels == (unsigned char *) NULL)
381 draw_info=DestroyDrawInfo(draw_info);
382 caption=DestroyString(caption);
383 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
385 surface=cairo_image_surface_create_for_data(pixels,CAIRO_FORMAT_ARGB32,
386 image->columns,image->rows,stride);
387 cairo_image=cairo_create(surface);
388 cairo_set_operator(cairo_image,CAIRO_OPERATOR_CLEAR);
389 cairo_paint(cairo_image);
390 cairo_set_operator(cairo_image,CAIRO_OPERATOR_OVER);
391 cairo_translate(cairo_image,page.x,page.y);
392 pango_cairo_show_layout(cairo_image,layout);
393 cairo_destroy(cairo_image);
394 cairo_surface_destroy(surface);
395 g_object_unref(layout);
396 g_object_unref(fontmap);
398 Convert surface to image.
400 (void) SetImageBackgroundColor(image,exception);
402 GetPixelInfo(image,&fill_color);
403 for (y=0; y < (ssize_t) image->rows; y++)
411 q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
412 if (q == (Quantum *) NULL)
414 for (x=0; x < (ssize_t) image->columns; x++)
419 fill_color.blue=(MagickRealType) ScaleCharToQuantum(*p++);
420 fill_color.green=(MagickRealType) ScaleCharToQuantum(*p++);
421 fill_color.red=(MagickRealType) ScaleCharToQuantum(*p++);
422 fill_color.alpha=(MagickRealType) ScaleCharToQuantum(*p++);
426 gamma=1.0-QuantumScale*fill_color.alpha;
427 gamma=1.0/(fabs((double) gamma) <= MagickEpsilon ? 1.0 : gamma);
428 fill_color.blue*=gamma;
429 fill_color.green*=gamma;
430 fill_color.red*=gamma;
431 CompositePixelOver(image,&fill_color,fill_color.alpha,q,(MagickRealType)
432 GetPixelAlpha(image,q),q);
433 q+=GetPixelChannels(image);
435 if (SyncAuthenticPixels(image,exception) == MagickFalse)
437 if (image->previous == (Image *) NULL)
439 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
441 if (status == MagickFalse)
446 Relinquish resources.
448 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
449 draw_info=DestroyDrawInfo(draw_info);
450 caption=DestroyString(caption);
451 return(GetFirstImageInList(image));
456 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
460 % R e g i s t e r P A N G O I m a g e %
464 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
466 % RegisterPANGOImage() adds attributes for the Pango Markup Language format to
467 % the list of supported formats. The attributes include the image format
468 % tag, a method to read and/or write the format, whether the format
469 % supports the saving of more than one frame to the same file or blob,
470 % whether the format supports native in-memory I/O, and a brief
471 % description of the format.
473 % The format of the RegisterPANGOImage method is:
475 % size_t RegisterPANGOImage(void)
478 ModuleExport size_t RegisterPANGOImage(void)
481 version[MaxTextExtent];
487 #if defined(PANGO_VERSION_STRING)
488 (void) FormatLocaleString(version,MaxTextExtent,"Pangocairo %s",
489 PANGO_VERSION_STRING);
491 entry=SetMagickInfo("PANGO");
492 #if defined(MAGICKCORE_PANGOCAIRO_DELEGATE)
493 entry->decoder=(DecodeImageHandler *) ReadPANGOImage;
495 entry->description=ConstantString("Pango Markup Language");
496 if (*version != '\0')
497 entry->version=ConstantString(version);
498 entry->adjoin=MagickFalse;
499 entry->module=ConstantString("PANGO");
500 (void) RegisterMagickInfo(entry);
501 return(MagickImageCoderSignature);
505 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
509 % U n r e g i s t e r P A N G O I m a g e %
513 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
515 % UnregisterPANGOImage() removes format registrations made by the Pango module
516 % from the list of supported formats.
518 % The format of the UnregisterPANGOImage method is:
520 % UnregisterPANGOImage(void)
523 ModuleExport void UnregisterPANGOImage(void)
525 (void) UnregisterMagickInfo("PANGO");