blob: b834e84f2d1bed749182edcd39fcd35302377ae3 [file] [log] [blame]
cristybb06a1a2012-03-15 00:16:53 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% PPPP AAA N N GGGG OOO %
7% P P A A NN N G O O %
cristyfde4ac32012-03-15 11:25:35 +00008% PPPP AAAAA N N N G GGG O O %
dirkb227d322015-05-23 22:46:15 +00009% P A A N NN G G O O %
cristyfde4ac32012-03-15 11:25:35 +000010% P A A N N GGGG OOO %
cristybb06a1a2012-03-15 00:16:53 +000011% %
12% %
cristyfde4ac32012-03-15 11:25:35 +000013% Read Pango Markup Language Format %
cristybb06a1a2012-03-15 00:16:53 +000014% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristyfde4ac32012-03-15 11:25:35 +000017% March 2012 %
cristybb06a1a2012-03-15 00:16:53 +000018% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristybb06a1a2012-03-15 00:16:53 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
37*/
38
39/*
40 Include declarations.
41*/
42#include "MagickCore/studio.h"
43#include "MagickCore/annotate.h"
cristy63fe24b2013-04-05 18:04:34 +000044#include "MagickCore/artifact.h"
cristybb06a1a2012-03-15 00:16:53 +000045#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
47#include "MagickCore/composite-private.h"
48#include "MagickCore/draw.h"
49#include "MagickCore/draw-private.h"
50#include "MagickCore/exception.h"
51#include "MagickCore/exception-private.h"
52#include "MagickCore/image.h"
53#include "MagickCore/image-private.h"
54#include "MagickCore/list.h"
55#include "MagickCore/magick.h"
cristyfde4ac32012-03-15 11:25:35 +000056#include "MagickCore/memory_.h"
cristy19642b02012-03-26 19:33:21 +000057#include "MagickCore/module.h"
58#include "MagickCore/monitor.h"
59#include "MagickCore/monitor-private.h"
cristybb06a1a2012-03-15 00:16:53 +000060#include "MagickCore/option.h"
cristyfde4ac32012-03-15 11:25:35 +000061#include "MagickCore/pixel-accessor.h"
cristybb06a1a2012-03-15 00:16:53 +000062#include "MagickCore/property.h"
63#include "MagickCore/quantum-private.h"
64#include "MagickCore/static.h"
65#include "MagickCore/string_.h"
66#include "MagickCore/string-private.h"
cristye40005d2012-03-23 12:18:45 +000067#include "MagickCore/token.h"
cristybb06a1a2012-03-15 00:16:53 +000068#include "MagickCore/utility.h"
cristy19642b02012-03-26 19:33:21 +000069#if defined(MAGICKCORE_PANGOCAIRO_DELEGATE)
cristybb06a1a2012-03-15 00:16:53 +000070#include <pango/pango.h>
cristy19642b02012-03-26 19:33:21 +000071#include <pango/pangocairo.h>
cristybb06a1a2012-03-15 00:16:53 +000072#include <pango/pango-features.h>
73#endif
74
cristy19642b02012-03-26 19:33:21 +000075#if defined(MAGICKCORE_PANGOCAIRO_DELEGATE)
cristybb06a1a2012-03-15 00:16:53 +000076/*
77%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78% %
79% %
80% %
81% R e a d P A N G O I m a g e %
82% %
83% %
84% %
85%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
86%
cristyfde4ac32012-03-15 11:25:35 +000087% ReadPANGOImage() reads an image in the Pango Markup Language Format.
cristybb06a1a2012-03-15 00:16:53 +000088%
89% The format of the ReadPANGOImage method is:
90%
91% Image *ReadPANGOImage(const ImageInfo *image_info,
92% ExceptionInfo *exception)
93%
94% A description of each parameter follows:
95%
96% o image_info: the image info.
97%
98% o exception: return any errors or warnings in this structure.
99%
100*/
cristyfde4ac32012-03-15 11:25:35 +0000101static Image *ReadPANGOImage(const ImageInfo *image_info,
102 ExceptionInfo *exception)
cristybb06a1a2012-03-15 00:16:53 +0000103{
cristy19642b02012-03-26 19:33:21 +0000104 cairo_font_options_t
105 *font_options;
106
107 cairo_surface_t
108 *surface;
109
cristyfde4ac32012-03-15 11:25:35 +0000110 char
111 *caption,
112 *property;
113
cristy19642b02012-03-26 19:33:21 +0000114 cairo_t
cristyab1975c2012-03-27 01:34:11 +0000115 *cairo_image;
cristy19642b02012-03-26 19:33:21 +0000116
cristybb06a1a2012-03-15 00:16:53 +0000117 const char
118 *option;
119
cristyfde4ac32012-03-15 11:25:35 +0000120 DrawInfo
121 *draw_info;
122
cristyfde4ac32012-03-15 11:25:35 +0000123 Image
124 *image;
125
cristy19642b02012-03-26 19:33:21 +0000126 MagickBooleanType
127 status;
128
cristy0553bd52013-06-30 15:53:50 +0000129 MemoryInfo
130 *pixel_info;
131
cristybb06a1a2012-03-15 00:16:53 +0000132 PangoAlignment
133 align;
134
135 PangoContext
136 *context;
137
dirk20b6a112015-05-23 22:43:45 +0000138 PangoFontDescription
139 *description;
140
cristybb06a1a2012-03-15 00:16:53 +0000141 PangoFontMap
142 *fontmap;
143
144 PangoGravity
145 gravity;
146
147 PangoLayout
148 *layout;
149
150 PangoRectangle
151 extent;
152
153 PixelInfo
154 fill_color;
155
156 RectangleInfo
157 page;
158
cristybb06a1a2012-03-15 00:16:53 +0000159 register unsigned char
160 *p;
161
cristyab1975c2012-03-27 01:34:11 +0000162 size_t
163 stride;
164
cristybb06a1a2012-03-15 00:16:53 +0000165 ssize_t
166 y;
167
cristy19642b02012-03-26 19:33:21 +0000168 unsigned char
169 *pixels;
170
cristybb06a1a2012-03-15 00:16:53 +0000171 /*
cristyfde4ac32012-03-15 11:25:35 +0000172 Initialize Image structure.
173 */
174 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000175 assert(image_info->signature == MagickCoreSignature);
cristyfde4ac32012-03-15 11:25:35 +0000176 if (image_info->debug != MagickFalse)
177 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
178 image_info->filename);
179 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000180 assert(exception->signature == MagickCoreSignature);
cristyfde4ac32012-03-15 11:25:35 +0000181 image=AcquireImage(image_info,exception);
182 (void) ResetImagePage(image,"0x0+0+0");
183 /*
cristyc0732c42012-03-20 19:28:35 +0000184 Format caption.
185 */
cristy092ec8d2013-04-26 13:46:22 +0000186 option=GetImageOption(image_info,"filename");
cristyc0732c42012-03-20 19:28:35 +0000187 if (option == (const char *) NULL)
cristye67f43f2013-04-29 10:27:50 +0000188 property=InterpretImageProperties((ImageInfo *) image_info,image,
189 image_info->filename,exception);
cristyc0732c42012-03-20 19:28:35 +0000190 else
191 if (LocaleNCompare(option,"pango:",6) == 0)
cristye67f43f2013-04-29 10:27:50 +0000192 property=InterpretImageProperties((ImageInfo *) image_info,image,option+6,
193 exception);
cristyc0732c42012-03-20 19:28:35 +0000194 else
cristye67f43f2013-04-29 10:27:50 +0000195 property=InterpretImageProperties((ImageInfo *) image_info,image,option,
196 exception);
cristyc0732c42012-03-20 19:28:35 +0000197 (void) SetImageProperty(image,"caption",property,exception);
198 property=DestroyString(property);
199 caption=ConstantString(GetImageProperty(image,"caption",exception));
200 /*
cristybb06a1a2012-03-15 00:16:53 +0000201 Get context.
202 */
cristy19642b02012-03-26 19:33:21 +0000203 fontmap=pango_cairo_font_map_new();
204 pango_cairo_font_map_set_resolution(PANGO_CAIRO_FONT_MAP(fontmap),
cristy2d677312013-01-02 19:19:21 +0000205 image->resolution.x == 0.0 ? 90.0 : image->resolution.x);
cristy19642b02012-03-26 19:33:21 +0000206 font_options=cairo_font_options_create();
cristy092ec8d2013-04-26 13:46:22 +0000207 option=GetImageOption(image_info,"pango:hinting");
cristy19642b02012-03-26 19:33:21 +0000208 if (option != (const char *) NULL)
209 {
210 if (LocaleCompare(option,"none") != 0)
211 cairo_font_options_set_hint_style(font_options,CAIRO_HINT_STYLE_NONE);
212 if (LocaleCompare(option,"full") != 0)
213 cairo_font_options_set_hint_style(font_options,CAIRO_HINT_STYLE_FULL);
214 }
cristybb06a1a2012-03-15 00:16:53 +0000215 context=pango_font_map_create_context(fontmap);
cristy19642b02012-03-26 19:33:21 +0000216 pango_cairo_context_set_font_options(context,font_options);
cristyab1975c2012-03-27 01:34:11 +0000217 cairo_font_options_destroy(font_options);
cristy092ec8d2013-04-26 13:46:22 +0000218 option=GetImageOption(image_info,"pango:language");
cristybb06a1a2012-03-15 00:16:53 +0000219 if (option != (const char *) NULL)
220 pango_context_set_language(context,pango_language_from_string(option));
cristyfde4ac32012-03-15 11:25:35 +0000221 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);
cristybb06a1a2012-03-15 00:16:53 +0000222 pango_context_set_base_dir(context,draw_info->direction ==
223 RightToLeftDirection ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR);
224 switch (draw_info->gravity)
225 {
cristy58845e32012-03-27 15:44:05 +0000226 case NorthGravity:
227 {
228 gravity=PANGO_GRAVITY_NORTH;
229 break;
230 }
231 case NorthWestGravity:
232 case WestGravity:
233 case SouthWestGravity:
234 {
235 gravity=PANGO_GRAVITY_WEST;
236 break;
237 }
238 case NorthEastGravity:
239 case EastGravity:
240 case SouthEastGravity:
241 {
242 gravity=PANGO_GRAVITY_EAST;
243 break;
244 }
245 case SouthGravity:
246 {
247 gravity=PANGO_GRAVITY_SOUTH;
248 break;
249 }
250 default:
251 {
252 gravity=PANGO_GRAVITY_AUTO;
253 break;
254 }
cristybb06a1a2012-03-15 00:16:53 +0000255 }
256 pango_context_set_base_gravity(context,gravity);
cristy092ec8d2013-04-26 13:46:22 +0000257 option=GetImageOption(image_info,"pango:gravity-hint");
cristybb06a1a2012-03-15 00:16:53 +0000258 if (option != (const char *) NULL)
259 {
260 if (LocaleCompare(option,"line") == 0)
261 pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_LINE);
262 if (LocaleCompare(option,"natural") == 0)
263 pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_NATURAL);
264 if (LocaleCompare(option,"strong") == 0)
265 pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_STRONG);
266 }
267 /*
268 Configure layout.
269 */
270 layout=pango_layout_new(context);
cristy092ec8d2013-04-26 13:46:22 +0000271 option=GetImageOption(image_info,"pango:auto-dir");
cristybb06a1a2012-03-15 00:16:53 +0000272 if (option != (const char *) NULL)
273 pango_layout_set_auto_dir(layout,1);
cristy092ec8d2013-04-26 13:46:22 +0000274 option=GetImageOption(image_info,"pango:ellipsize");
cristybb06a1a2012-03-15 00:16:53 +0000275 if (option != (const char *) NULL)
276 {
277 if (LocaleCompare(option,"end") == 0)
278 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_END);
279 if (LocaleCompare(option,"middle") == 0)
280 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_MIDDLE);
281 if (LocaleCompare(option,"none") == 0)
282 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_NONE);
283 if (LocaleCompare(option,"start") == 0)
284 pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_START);
285 }
cristy092ec8d2013-04-26 13:46:22 +0000286 option=GetImageOption(image_info,"pango:justify");
dirk360b9862016-01-05 15:20:46 +0100287 if (IsStringTrue(option) != MagickFalse)
cristybb06a1a2012-03-15 00:16:53 +0000288 pango_layout_set_justify(layout,1);
cristy092ec8d2013-04-26 13:46:22 +0000289 option=GetImageOption(image_info,"pango:single-paragraph");
dirk360b9862016-01-05 15:20:46 +0100290 if (IsStringTrue(option) != MagickFalse)
cristybb06a1a2012-03-15 00:16:53 +0000291 pango_layout_set_single_paragraph_mode(layout,1);
cristy092ec8d2013-04-26 13:46:22 +0000292 option=GetImageOption(image_info,"pango:wrap");
cristybb06a1a2012-03-15 00:16:53 +0000293 if (option != (const char *) NULL)
294 {
295 if (LocaleCompare(option,"char") == 0)
296 pango_layout_set_wrap(layout,PANGO_WRAP_CHAR);
297 if (LocaleCompare(option,"word") == 0)
298 pango_layout_set_wrap(layout,PANGO_WRAP_WORD);
299 if (LocaleCompare(option,"word-char") == 0)
300 pango_layout_set_wrap(layout,PANGO_WRAP_WORD_CHAR);
301 }
cristy092ec8d2013-04-26 13:46:22 +0000302 option=GetImageOption(image_info,"pango:indent");
cristybb06a1a2012-03-15 00:16:53 +0000303 if (option != (const char *) NULL)
cristy22fd9d32012-03-19 11:50:33 +0000304 pango_layout_set_indent(layout,(int) ((StringToLong(option)*
cristy2d677312013-01-02 19:19:21 +0000305 (image->resolution.x == 0.0 ? 90.0 : image->resolution.x)*PANGO_SCALE+36)/
306 90.0+0.5));
cristybb06a1a2012-03-15 00:16:53 +0000307 switch (draw_info->align)
308 {
309 case CenterAlign: align=PANGO_ALIGN_CENTER; break;
310 case RightAlign: align=PANGO_ALIGN_RIGHT; break;
311 case LeftAlign: align=PANGO_ALIGN_LEFT; break;
312 default:
313 {
314 if (draw_info->gravity == CenterGravity)
cristyfde4ac32012-03-15 11:25:35 +0000315 {
cristybb06a1a2012-03-15 00:16:53 +0000316 align=PANGO_ALIGN_CENTER;
317 break;
318 }
319 align=PANGO_ALIGN_LEFT;
320 break;
321 }
322 }
323 if ((align != PANGO_ALIGN_CENTER) &&
324 (draw_info->direction == RightToLeftDirection))
325 align=(PangoAlignment) (PANGO_ALIGN_LEFT+PANGO_ALIGN_RIGHT-align);
326 pango_layout_set_alignment(layout,align);
dirk20b6a112015-05-23 22:43:45 +0000327 if (draw_info->font == (char *) NULL)
328 description=pango_font_description_new();
329 else
330 description=pango_font_description_from_string(draw_info->font);
331 pango_font_description_set_size(description,(int) (PANGO_SCALE*
332 draw_info->pointsize+0.5));
333 pango_layout_set_font_description(layout,description);
334 pango_font_description_free(description);
cristy092ec8d2013-04-26 13:46:22 +0000335 option=GetImageOption(image_info,"pango:markup");
cristyf3dbd112012-04-11 21:05:40 +0000336 if ((option != (const char *) NULL) && (IsStringTrue(option) == MagickFalse))
cristyfde4ac32012-03-15 11:25:35 +0000337 pango_layout_set_text(layout,caption,-1);
cristy4d84e4a2012-03-19 11:27:53 +0000338 else
339 {
340 GError
341 *error;
342
343 error=(GError *) NULL;
344 if (pango_parse_markup(caption,-1,0,NULL,NULL,NULL,&error) == 0)
345 (void) ThrowMagickException(exception,GetMagickModule(),CoderError,
346 error->message,"`%s'",image_info->filename);
347 pango_layout_set_markup(layout,caption,-1);
348 }
cristybb06a1a2012-03-15 00:16:53 +0000349 pango_layout_context_changed(layout);
350 page.x=0;
351 page.y=0;
352 if (image_info->page != (char *) NULL)
353 (void) ParseAbsoluteGeometry(image_info->page,&page);
354 if (image->columns == 0)
355 {
cristy8592b052013-02-07 01:24:54 +0000356 pango_layout_get_extents(layout,NULL,&extent);
cristy9171f112013-01-02 19:59:13 +0000357 image->columns=(extent.x+extent.width+PANGO_SCALE/2)/PANGO_SCALE+2*page.x;
cristybb06a1a2012-03-15 00:16:53 +0000358 }
359 else
360 {
361 image->columns-=2*page.x;
cristy22fd9d32012-03-19 11:50:33 +0000362 pango_layout_set_width(layout,(int) ((PANGO_SCALE*image->columns*
cristy910b7962013-01-06 14:30:18 +0000363 (image->resolution.x == 0.0 ? 90.0 : image->resolution.x)+45.0)/90.0+
cristy67cd01f2013-01-02 13:49:56 +0000364 0.5));
cristybb06a1a2012-03-15 00:16:53 +0000365 }
366 if (image->rows == 0)
367 {
cristy8592b052013-02-07 01:24:54 +0000368 pango_layout_get_extents(layout,NULL,&extent);
cristy9171f112013-01-02 19:59:13 +0000369 image->rows=(extent.y+extent.height+PANGO_SCALE/2)/PANGO_SCALE+2*page.y;
cristybb06a1a2012-03-15 00:16:53 +0000370 }
371 else
372 {
373 image->rows-=2*page.y;
cristy22fd9d32012-03-19 11:50:33 +0000374 pango_layout_set_height(layout,(int) ((PANGO_SCALE*image->rows*
cristy910b7962013-01-06 14:30:18 +0000375 (image->resolution.y == 0.0 ? 90.0 : image->resolution.y)+45.0)/90.0+
cristy67cd01f2013-01-02 13:49:56 +0000376 0.5));
cristybb06a1a2012-03-15 00:16:53 +0000377 }
cristyacabb842014-12-14 23:36:33 +0000378 status=SetImageExtent(image,image->columns,image->rows,exception);
379 if (status == MagickFalse)
380 return(DestroyImageList(image));
cristybb06a1a2012-03-15 00:16:53 +0000381 /*
cristyba275302012-03-27 14:42:23 +0000382 Render markup.
cristybb06a1a2012-03-15 00:16:53 +0000383 */
cristyab1975c2012-03-27 01:34:11 +0000384 stride=(size_t) cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32,
cristy4e3b19e2014-01-24 17:45:50 +0000385 (int) image->columns);
cristy0553bd52013-06-30 15:53:50 +0000386 pixel_info=AcquireVirtualMemory(image->rows,stride*sizeof(*pixels));
387 if (pixel_info == (MemoryInfo *) NULL)
cristyab1975c2012-03-27 01:34:11 +0000388 {
389 draw_info=DestroyDrawInfo(draw_info);
390 caption=DestroyString(caption);
391 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
392 }
cristy0553bd52013-06-30 15:53:50 +0000393 pixels=(unsigned char *) GetVirtualMemoryBlob(pixel_info);
cristy19642b02012-03-26 19:33:21 +0000394 surface=cairo_image_surface_create_for_data(pixels,CAIRO_FORMAT_ARGB32,
cristy4e3b19e2014-01-24 17:45:50 +0000395 (int) image->columns,(int) image->rows,(int) stride);
cristyab1975c2012-03-27 01:34:11 +0000396 cairo_image=cairo_create(surface);
cristyba275302012-03-27 14:42:23 +0000397 cairo_set_operator(cairo_image,CAIRO_OPERATOR_CLEAR);
cristyab1975c2012-03-27 01:34:11 +0000398 cairo_paint(cairo_image);
399 cairo_set_operator(cairo_image,CAIRO_OPERATOR_OVER);
cristy973b85f2012-03-27 14:56:21 +0000400 cairo_translate(cairo_image,page.x,page.y);
dirk70e76042015-05-23 23:19:56 +0000401 cairo_set_source_rgba(cairo_image,QuantumScale*draw_info->fill.red,
402 QuantumScale*draw_info->fill.green,QuantumScale*draw_info->fill.blue,
403 QuantumScale*draw_info->fill.alpha);
cristyab1975c2012-03-27 01:34:11 +0000404 pango_cairo_show_layout(cairo_image,layout);
cristyab1975c2012-03-27 01:34:11 +0000405 cairo_destroy(cairo_image);
cristy19642b02012-03-26 19:33:21 +0000406 cairo_surface_destroy(surface);
cristyba275302012-03-27 14:42:23 +0000407 g_object_unref(layout);
cristy19642b02012-03-26 19:33:21 +0000408 g_object_unref(fontmap);
cristybb06a1a2012-03-15 00:16:53 +0000409 /*
cristyab1975c2012-03-27 01:34:11 +0000410 Convert surface to image.
cristybb06a1a2012-03-15 00:16:53 +0000411 */
cristy19642b02012-03-26 19:33:21 +0000412 (void) SetImageBackgroundColor(image,exception);
413 p=pixels;
cristybb06a1a2012-03-15 00:16:53 +0000414 GetPixelInfo(image,&fill_color);
cristy19642b02012-03-26 19:33:21 +0000415 for (y=0; y < (ssize_t) image->rows; y++)
cristybb06a1a2012-03-15 00:16:53 +0000416 {
cristyba275302012-03-27 14:42:23 +0000417 register Quantum
418 *q;
419
cristyab1975c2012-03-27 01:34:11 +0000420 register ssize_t
421 x;
cristybb06a1a2012-03-15 00:16:53 +0000422
423 q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
424 if (q == (Quantum *) NULL)
425 break;
cristy19642b02012-03-26 19:33:21 +0000426 for (x=0; x < (ssize_t) image->columns; x++)
cristybb06a1a2012-03-15 00:16:53 +0000427 {
cristyab1975c2012-03-27 01:34:11 +0000428 double
429 gamma;
430
cristya19f1d72012-08-07 18:24:38 +0000431 fill_color.blue=(double) ScaleCharToQuantum(*p++);
432 fill_color.green=(double) ScaleCharToQuantum(*p++);
433 fill_color.red=(double) ScaleCharToQuantum(*p++);
434 fill_color.alpha=(double) ScaleCharToQuantum(*p++);
cristyab1975c2012-03-27 01:34:11 +0000435 /*
436 Disassociate alpha.
437 */
dirk09de1212015-03-24 18:45:45 +0000438 gamma=QuantumScale*fill_color.alpha;
cristy3e3ec3a2012-11-03 23:11:06 +0000439 gamma=PerceptibleReciprocal(gamma);
cristyab1975c2012-03-27 01:34:11 +0000440 fill_color.blue*=gamma;
441 fill_color.green*=gamma;
442 fill_color.red*=gamma;
cristya19f1d72012-08-07 18:24:38 +0000443 CompositePixelOver(image,&fill_color,fill_color.alpha,q,(double)
cristy19642b02012-03-26 19:33:21 +0000444 GetPixelAlpha(image,q),q);
cristybb06a1a2012-03-15 00:16:53 +0000445 q+=GetPixelChannels(image);
446 }
cristy19642b02012-03-26 19:33:21 +0000447 if (SyncAuthenticPixels(image,exception) == MagickFalse)
448 break;
449 if (image->previous == (Image *) NULL)
450 {
451 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
452 image->rows);
453 if (status == MagickFalse)
454 break;
455 }
cristybb06a1a2012-03-15 00:16:53 +0000456 }
457 /*
458 Relinquish resources.
459 */
cristy0553bd52013-06-30 15:53:50 +0000460 pixel_info=RelinquishVirtualMemory(pixel_info);
cristyfde4ac32012-03-15 11:25:35 +0000461 draw_info=DestroyDrawInfo(draw_info);
cristybb06a1a2012-03-15 00:16:53 +0000462 caption=DestroyString(caption);
cristybb06a1a2012-03-15 00:16:53 +0000463 return(GetFirstImageInList(image));
464}
cristyfde4ac32012-03-15 11:25:35 +0000465#endif
cristybb06a1a2012-03-15 00:16:53 +0000466
467/*
468%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
469% %
470% %
471% %
472% R e g i s t e r P A N G O I m a g e %
473% %
474% %
475% %
476%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
477%
cristyfde4ac32012-03-15 11:25:35 +0000478% RegisterPANGOImage() adds attributes for the Pango Markup Language format to
cristybb06a1a2012-03-15 00:16:53 +0000479% the list of supported formats. The attributes include the image format
480% tag, a method to read and/or write the format, whether the format
481% supports the saving of more than one frame to the same file or blob,
482% whether the format supports native in-memory I/O, and a brief
483% description of the format.
484%
485% The format of the RegisterPANGOImage method is:
486%
487% size_t RegisterPANGOImage(void)
488%
489*/
490ModuleExport size_t RegisterPANGOImage(void)
491{
492 char
cristy151b66d2015-04-15 10:50:31 +0000493 version[MagickPathExtent];
cristybb06a1a2012-03-15 00:16:53 +0000494
495 MagickInfo
496 *entry;
497
498 *version='\0';
499#if defined(PANGO_VERSION_STRING)
cristy151b66d2015-04-15 10:50:31 +0000500 (void) FormatLocaleString(version,MagickPathExtent,"Pangocairo %s",
cristybb06a1a2012-03-15 00:16:53 +0000501 PANGO_VERSION_STRING);
502#endif
dirk06b627a2015-04-06 18:59:17 +0000503 entry=AcquireMagickInfo("PANGO","PANGO","Pango Markup Language");
cristy19642b02012-03-26 19:33:21 +0000504#if defined(MAGICKCORE_PANGOCAIRO_DELEGATE)
cristybb06a1a2012-03-15 00:16:53 +0000505 entry->decoder=(DecodeImageHandler *) ReadPANGOImage;
cristyfde4ac32012-03-15 11:25:35 +0000506#endif
cristybb06a1a2012-03-15 00:16:53 +0000507 if (*version != '\0')
508 entry->version=ConstantString(version);
dirk08e9a112015-02-22 01:51:41 +0000509 entry->flags^=CoderAdjoinFlag;
cristybb06a1a2012-03-15 00:16:53 +0000510 (void) RegisterMagickInfo(entry);
511 return(MagickImageCoderSignature);
512}
513
514/*
515%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
516% %
517% %
518% %
519% U n r e g i s t e r P A N G O I m a g e %
520% %
521% %
522% %
523%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
524%
cristyfde4ac32012-03-15 11:25:35 +0000525% UnregisterPANGOImage() removes format registrations made by the Pango module
526% from the list of supported formats.
cristybb06a1a2012-03-15 00:16:53 +0000527%
528% The format of the UnregisterPANGOImage method is:
529%
530% UnregisterPANGOImage(void)
531%
532*/
533ModuleExport void UnregisterPANGOImage(void)
534{
535 (void) UnregisterMagickInfo("PANGO");
536}