cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % PPPP AAA N N GGGG OOO % |
| 7 | % P P A A NN N G O O % |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 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 % |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 11 | % % |
| 12 | % % |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 13 | % Read Pango Markup Language Format % |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 14 | % % |
| 15 | % Software Design % |
cristy | de984cd | 2013-12-01 14:49:27 +0000 | [diff] [blame] | 16 | % Cristy % |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 17 | % March 2012 % |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 18 | % % |
| 19 | % % |
cristy | b56bb24 | 2014-11-25 17:12:48 +0000 | [diff] [blame] | 20 | % Copyright 1999-2015 ImageMagick Studio LLC, a non-profit organization % |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 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 | % |
| 37 | */ |
| 38 | |
| 39 | /* |
| 40 | Include declarations. |
| 41 | */ |
| 42 | #include "MagickCore/studio.h" |
| 43 | #include "MagickCore/annotate.h" |
cristy | 63fe24b | 2013-04-05 18:04:34 +0000 | [diff] [blame] | 44 | #include "MagickCore/artifact.h" |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 45 | #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" |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 56 | #include "MagickCore/memory_.h" |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 57 | #include "MagickCore/module.h" |
| 58 | #include "MagickCore/monitor.h" |
| 59 | #include "MagickCore/monitor-private.h" |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 60 | #include "MagickCore/option.h" |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 61 | #include "MagickCore/pixel-accessor.h" |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 62 | #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" |
cristy | e40005d | 2012-03-23 12:18:45 +0000 | [diff] [blame] | 67 | #include "MagickCore/token.h" |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 68 | #include "MagickCore/utility.h" |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 69 | #if defined(MAGICKCORE_PANGOCAIRO_DELEGATE) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 70 | #include <pango/pango.h> |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 71 | #include <pango/pangocairo.h> |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 72 | #include <pango/pango-features.h> |
| 73 | #endif |
| 74 | |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 75 | #if defined(MAGICKCORE_PANGOCAIRO_DELEGATE) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 76 | /* |
| 77 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 78 | % % |
| 79 | % % |
| 80 | % % |
| 81 | % R e a d P A N G O I m a g e % |
| 82 | % % |
| 83 | % % |
| 84 | % % |
| 85 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 86 | % |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 87 | % ReadPANGOImage() reads an image in the Pango Markup Language Format. |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 88 | % |
| 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 | */ |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 101 | static Image *ReadPANGOImage(const ImageInfo *image_info, |
| 102 | ExceptionInfo *exception) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 103 | { |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 104 | cairo_font_options_t |
| 105 | *font_options; |
| 106 | |
| 107 | cairo_surface_t |
| 108 | *surface; |
| 109 | |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 110 | char |
| 111 | *caption, |
| 112 | *property; |
| 113 | |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 114 | cairo_t |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 115 | *cairo_image; |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 116 | |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 117 | const char |
| 118 | *option; |
| 119 | |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 120 | DrawInfo |
| 121 | *draw_info; |
| 122 | |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 123 | Image |
| 124 | *image; |
| 125 | |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 126 | MagickBooleanType |
| 127 | status; |
| 128 | |
cristy | 0553bd5 | 2013-06-30 15:53:50 +0000 | [diff] [blame] | 129 | MemoryInfo |
| 130 | *pixel_info; |
| 131 | |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 132 | PangoAlignment |
| 133 | align; |
| 134 | |
| 135 | PangoContext |
| 136 | *context; |
| 137 | |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 138 | PangoFontMap |
| 139 | *fontmap; |
| 140 | |
| 141 | PangoGravity |
| 142 | gravity; |
| 143 | |
| 144 | PangoLayout |
| 145 | *layout; |
| 146 | |
| 147 | PangoRectangle |
| 148 | extent; |
| 149 | |
| 150 | PixelInfo |
| 151 | fill_color; |
| 152 | |
| 153 | RectangleInfo |
| 154 | page; |
| 155 | |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 156 | register unsigned char |
| 157 | *p; |
| 158 | |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 159 | size_t |
| 160 | stride; |
| 161 | |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 162 | ssize_t |
| 163 | y; |
| 164 | |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 165 | unsigned char |
| 166 | *pixels; |
| 167 | |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 168 | /* |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 169 | Initialize Image structure. |
| 170 | */ |
| 171 | assert(image_info != (const ImageInfo *) NULL); |
| 172 | assert(image_info->signature == MagickSignature); |
| 173 | if (image_info->debug != MagickFalse) |
| 174 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 175 | image_info->filename); |
| 176 | assert(exception != (ExceptionInfo *) NULL); |
| 177 | assert(exception->signature == MagickSignature); |
| 178 | image=AcquireImage(image_info,exception); |
| 179 | (void) ResetImagePage(image,"0x0+0+0"); |
| 180 | /* |
cristy | c0732c4 | 2012-03-20 19:28:35 +0000 | [diff] [blame] | 181 | Format caption. |
| 182 | */ |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 183 | option=GetImageOption(image_info,"filename"); |
cristy | c0732c4 | 2012-03-20 19:28:35 +0000 | [diff] [blame] | 184 | if (option == (const char *) NULL) |
cristy | e67f43f | 2013-04-29 10:27:50 +0000 | [diff] [blame] | 185 | property=InterpretImageProperties((ImageInfo *) image_info,image, |
| 186 | image_info->filename,exception); |
cristy | c0732c4 | 2012-03-20 19:28:35 +0000 | [diff] [blame] | 187 | else |
| 188 | if (LocaleNCompare(option,"pango:",6) == 0) |
cristy | e67f43f | 2013-04-29 10:27:50 +0000 | [diff] [blame] | 189 | property=InterpretImageProperties((ImageInfo *) image_info,image,option+6, |
| 190 | exception); |
cristy | c0732c4 | 2012-03-20 19:28:35 +0000 | [diff] [blame] | 191 | else |
cristy | e67f43f | 2013-04-29 10:27:50 +0000 | [diff] [blame] | 192 | property=InterpretImageProperties((ImageInfo *) image_info,image,option, |
| 193 | exception); |
cristy | c0732c4 | 2012-03-20 19:28:35 +0000 | [diff] [blame] | 194 | (void) SetImageProperty(image,"caption",property,exception); |
| 195 | property=DestroyString(property); |
| 196 | caption=ConstantString(GetImageProperty(image,"caption",exception)); |
| 197 | /* |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 198 | Get context. |
| 199 | */ |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 200 | fontmap=pango_cairo_font_map_new(); |
| 201 | pango_cairo_font_map_set_resolution(PANGO_CAIRO_FONT_MAP(fontmap), |
cristy | 2d67731 | 2013-01-02 19:19:21 +0000 | [diff] [blame] | 202 | image->resolution.x == 0.0 ? 90.0 : image->resolution.x); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 203 | font_options=cairo_font_options_create(); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 204 | option=GetImageOption(image_info,"pango:hinting"); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 205 | if (option != (const char *) NULL) |
| 206 | { |
| 207 | if (LocaleCompare(option,"none") != 0) |
| 208 | cairo_font_options_set_hint_style(font_options,CAIRO_HINT_STYLE_NONE); |
| 209 | if (LocaleCompare(option,"full") != 0) |
| 210 | cairo_font_options_set_hint_style(font_options,CAIRO_HINT_STYLE_FULL); |
| 211 | } |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 212 | context=pango_font_map_create_context(fontmap); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 213 | pango_cairo_context_set_font_options(context,font_options); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 214 | cairo_font_options_destroy(font_options); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 215 | option=GetImageOption(image_info,"pango:language"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 216 | if (option != (const char *) NULL) |
| 217 | pango_context_set_language(context,pango_language_from_string(option)); |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 218 | draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 219 | pango_context_set_base_dir(context,draw_info->direction == |
| 220 | RightToLeftDirection ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR); |
| 221 | switch (draw_info->gravity) |
| 222 | { |
cristy | 58845e3 | 2012-03-27 15:44:05 +0000 | [diff] [blame] | 223 | case NorthGravity: |
| 224 | { |
| 225 | gravity=PANGO_GRAVITY_NORTH; |
| 226 | break; |
| 227 | } |
| 228 | case NorthWestGravity: |
| 229 | case WestGravity: |
| 230 | case SouthWestGravity: |
| 231 | { |
| 232 | gravity=PANGO_GRAVITY_WEST; |
| 233 | break; |
| 234 | } |
| 235 | case NorthEastGravity: |
| 236 | case EastGravity: |
| 237 | case SouthEastGravity: |
| 238 | { |
| 239 | gravity=PANGO_GRAVITY_EAST; |
| 240 | break; |
| 241 | } |
| 242 | case SouthGravity: |
| 243 | { |
| 244 | gravity=PANGO_GRAVITY_SOUTH; |
| 245 | break; |
| 246 | } |
| 247 | default: |
| 248 | { |
| 249 | gravity=PANGO_GRAVITY_AUTO; |
| 250 | break; |
| 251 | } |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 252 | } |
| 253 | pango_context_set_base_gravity(context,gravity); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 254 | option=GetImageOption(image_info,"pango:gravity-hint"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 255 | if (option != (const char *) NULL) |
| 256 | { |
| 257 | if (LocaleCompare(option,"line") == 0) |
| 258 | pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_LINE); |
| 259 | if (LocaleCompare(option,"natural") == 0) |
| 260 | pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_NATURAL); |
| 261 | if (LocaleCompare(option,"strong") == 0) |
| 262 | pango_context_set_gravity_hint(context,PANGO_GRAVITY_HINT_STRONG); |
| 263 | } |
| 264 | /* |
| 265 | Configure layout. |
| 266 | */ |
| 267 | layout=pango_layout_new(context); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 268 | option=GetImageOption(image_info,"pango:auto-dir"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 269 | if (option != (const char *) NULL) |
| 270 | pango_layout_set_auto_dir(layout,1); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 271 | option=GetImageOption(image_info,"pango:ellipsize"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 272 | if (option != (const char *) NULL) |
| 273 | { |
| 274 | if (LocaleCompare(option,"end") == 0) |
| 275 | pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_END); |
| 276 | if (LocaleCompare(option,"middle") == 0) |
| 277 | pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_MIDDLE); |
| 278 | if (LocaleCompare(option,"none") == 0) |
| 279 | pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_NONE); |
| 280 | if (LocaleCompare(option,"start") == 0) |
| 281 | pango_layout_set_ellipsize(layout,PANGO_ELLIPSIZE_START); |
| 282 | } |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 283 | option=GetImageOption(image_info,"pango:justify"); |
anthony | 7bcfe7f | 2012-03-30 14:01:22 +0000 | [diff] [blame] | 284 | if (IfMagickTrue(IsStringTrue(option))) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 285 | pango_layout_set_justify(layout,1); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 286 | option=GetImageOption(image_info,"pango:single-paragraph"); |
anthony | 7bcfe7f | 2012-03-30 14:01:22 +0000 | [diff] [blame] | 287 | if (IfMagickTrue(IsStringTrue(option))) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 288 | pango_layout_set_single_paragraph_mode(layout,1); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 289 | option=GetImageOption(image_info,"pango:wrap"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 290 | if (option != (const char *) NULL) |
| 291 | { |
| 292 | if (LocaleCompare(option,"char") == 0) |
| 293 | pango_layout_set_wrap(layout,PANGO_WRAP_CHAR); |
| 294 | if (LocaleCompare(option,"word") == 0) |
| 295 | pango_layout_set_wrap(layout,PANGO_WRAP_WORD); |
| 296 | if (LocaleCompare(option,"word-char") == 0) |
| 297 | pango_layout_set_wrap(layout,PANGO_WRAP_WORD_CHAR); |
| 298 | } |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 299 | option=GetImageOption(image_info,"pango:indent"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 300 | if (option != (const char *) NULL) |
cristy | 22fd9d3 | 2012-03-19 11:50:33 +0000 | [diff] [blame] | 301 | pango_layout_set_indent(layout,(int) ((StringToLong(option)* |
cristy | 2d67731 | 2013-01-02 19:19:21 +0000 | [diff] [blame] | 302 | (image->resolution.x == 0.0 ? 90.0 : image->resolution.x)*PANGO_SCALE+36)/ |
| 303 | 90.0+0.5)); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 304 | switch (draw_info->align) |
| 305 | { |
| 306 | case CenterAlign: align=PANGO_ALIGN_CENTER; break; |
| 307 | case RightAlign: align=PANGO_ALIGN_RIGHT; break; |
| 308 | case LeftAlign: align=PANGO_ALIGN_LEFT; break; |
| 309 | default: |
| 310 | { |
| 311 | if (draw_info->gravity == CenterGravity) |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 312 | { |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 313 | align=PANGO_ALIGN_CENTER; |
| 314 | break; |
| 315 | } |
| 316 | align=PANGO_ALIGN_LEFT; |
| 317 | break; |
| 318 | } |
| 319 | } |
| 320 | if ((align != PANGO_ALIGN_CENTER) && |
| 321 | (draw_info->direction == RightToLeftDirection)) |
| 322 | align=(PangoAlignment) (PANGO_ALIGN_LEFT+PANGO_ALIGN_RIGHT-align); |
| 323 | pango_layout_set_alignment(layout,align); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 324 | if (draw_info->font != (char *) NULL) |
| 325 | { |
| 326 | PangoFontDescription |
| 327 | *description; |
| 328 | |
| 329 | /* |
| 330 | Set font. |
| 331 | */ |
| 332 | description=pango_font_description_from_string(draw_info->font); |
| 333 | pango_font_description_set_size(description,(int) (PANGO_SCALE* |
| 334 | draw_info->pointsize+0.5)); |
| 335 | pango_layout_set_font_description(layout,description); |
| 336 | pango_font_description_free(description); |
| 337 | } |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 338 | option=GetImageOption(image_info,"pango:markup"); |
cristy | f3dbd11 | 2012-04-11 21:05:40 +0000 | [diff] [blame] | 339 | if ((option != (const char *) NULL) && (IsStringTrue(option) == MagickFalse)) |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 340 | pango_layout_set_text(layout,caption,-1); |
cristy | 4d84e4a | 2012-03-19 11:27:53 +0000 | [diff] [blame] | 341 | else |
| 342 | { |
| 343 | GError |
| 344 | *error; |
| 345 | |
| 346 | error=(GError *) NULL; |
| 347 | if (pango_parse_markup(caption,-1,0,NULL,NULL,NULL,&error) == 0) |
| 348 | (void) ThrowMagickException(exception,GetMagickModule(),CoderError, |
| 349 | error->message,"`%s'",image_info->filename); |
| 350 | pango_layout_set_markup(layout,caption,-1); |
| 351 | } |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 352 | pango_layout_context_changed(layout); |
| 353 | page.x=0; |
| 354 | page.y=0; |
| 355 | if (image_info->page != (char *) NULL) |
| 356 | (void) ParseAbsoluteGeometry(image_info->page,&page); |
| 357 | if (image->columns == 0) |
| 358 | { |
cristy | 8592b05 | 2013-02-07 01:24:54 +0000 | [diff] [blame] | 359 | pango_layout_get_extents(layout,NULL,&extent); |
cristy | 9171f11 | 2013-01-02 19:59:13 +0000 | [diff] [blame] | 360 | image->columns=(extent.x+extent.width+PANGO_SCALE/2)/PANGO_SCALE+2*page.x; |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 361 | } |
| 362 | else |
| 363 | { |
| 364 | image->columns-=2*page.x; |
cristy | 22fd9d3 | 2012-03-19 11:50:33 +0000 | [diff] [blame] | 365 | pango_layout_set_width(layout,(int) ((PANGO_SCALE*image->columns* |
cristy | 910b796 | 2013-01-06 14:30:18 +0000 | [diff] [blame] | 366 | (image->resolution.x == 0.0 ? 90.0 : image->resolution.x)+45.0)/90.0+ |
cristy | 67cd01f | 2013-01-02 13:49:56 +0000 | [diff] [blame] | 367 | 0.5)); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 368 | } |
| 369 | if (image->rows == 0) |
| 370 | { |
cristy | 8592b05 | 2013-02-07 01:24:54 +0000 | [diff] [blame] | 371 | pango_layout_get_extents(layout,NULL,&extent); |
cristy | 9171f11 | 2013-01-02 19:59:13 +0000 | [diff] [blame] | 372 | image->rows=(extent.y+extent.height+PANGO_SCALE/2)/PANGO_SCALE+2*page.y; |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 373 | } |
| 374 | else |
| 375 | { |
| 376 | image->rows-=2*page.y; |
cristy | 22fd9d3 | 2012-03-19 11:50:33 +0000 | [diff] [blame] | 377 | pango_layout_set_height(layout,(int) ((PANGO_SCALE*image->rows* |
cristy | 910b796 | 2013-01-06 14:30:18 +0000 | [diff] [blame] | 378 | (image->resolution.y == 0.0 ? 90.0 : image->resolution.y)+45.0)/90.0+ |
cristy | 67cd01f | 2013-01-02 13:49:56 +0000 | [diff] [blame] | 379 | 0.5)); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 380 | } |
| 381 | /* |
cristy | ba27530 | 2012-03-27 14:42:23 +0000 | [diff] [blame] | 382 | Render markup. |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 383 | */ |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 384 | stride=(size_t) cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, |
cristy | 4e3b19e | 2014-01-24 17:45:50 +0000 | [diff] [blame] | 385 | (int) image->columns); |
cristy | 0553bd5 | 2013-06-30 15:53:50 +0000 | [diff] [blame] | 386 | pixel_info=AcquireVirtualMemory(image->rows,stride*sizeof(*pixels)); |
| 387 | if (pixel_info == (MemoryInfo *) NULL) |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 388 | { |
| 389 | draw_info=DestroyDrawInfo(draw_info); |
| 390 | caption=DestroyString(caption); |
| 391 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
| 392 | } |
cristy | 0553bd5 | 2013-06-30 15:53:50 +0000 | [diff] [blame] | 393 | pixels=(unsigned char *) GetVirtualMemoryBlob(pixel_info); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 394 | surface=cairo_image_surface_create_for_data(pixels,CAIRO_FORMAT_ARGB32, |
cristy | 4e3b19e | 2014-01-24 17:45:50 +0000 | [diff] [blame] | 395 | (int) image->columns,(int) image->rows,(int) stride); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 396 | cairo_image=cairo_create(surface); |
cristy | ba27530 | 2012-03-27 14:42:23 +0000 | [diff] [blame] | 397 | cairo_set_operator(cairo_image,CAIRO_OPERATOR_CLEAR); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 398 | cairo_paint(cairo_image); |
| 399 | cairo_set_operator(cairo_image,CAIRO_OPERATOR_OVER); |
cristy | 973b85f | 2012-03-27 14:56:21 +0000 | [diff] [blame] | 400 | cairo_translate(cairo_image,page.x,page.y); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 401 | pango_cairo_show_layout(cairo_image,layout); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 402 | cairo_destroy(cairo_image); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 403 | cairo_surface_destroy(surface); |
cristy | ba27530 | 2012-03-27 14:42:23 +0000 | [diff] [blame] | 404 | g_object_unref(layout); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 405 | g_object_unref(fontmap); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 406 | /* |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 407 | Convert surface to image. |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 408 | */ |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 409 | (void) SetImageBackgroundColor(image,exception); |
| 410 | p=pixels; |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 411 | GetPixelInfo(image,&fill_color); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 412 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 413 | { |
cristy | ba27530 | 2012-03-27 14:42:23 +0000 | [diff] [blame] | 414 | register Quantum |
| 415 | *q; |
| 416 | |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 417 | register ssize_t |
| 418 | x; |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 419 | |
| 420 | q=GetAuthenticPixels(image,0,y,image->columns,1,exception); |
| 421 | if (q == (Quantum *) NULL) |
| 422 | break; |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 423 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 424 | { |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 425 | double |
| 426 | gamma; |
| 427 | |
cristy | a19f1d7 | 2012-08-07 18:24:38 +0000 | [diff] [blame] | 428 | fill_color.blue=(double) ScaleCharToQuantum(*p++); |
| 429 | fill_color.green=(double) ScaleCharToQuantum(*p++); |
| 430 | fill_color.red=(double) ScaleCharToQuantum(*p++); |
| 431 | fill_color.alpha=(double) ScaleCharToQuantum(*p++); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 432 | /* |
| 433 | Disassociate alpha. |
| 434 | */ |
| 435 | gamma=1.0-QuantumScale*fill_color.alpha; |
cristy | 3e3ec3a | 2012-11-03 23:11:06 +0000 | [diff] [blame] | 436 | gamma=PerceptibleReciprocal(gamma); |
cristy | ab1975c | 2012-03-27 01:34:11 +0000 | [diff] [blame] | 437 | fill_color.blue*=gamma; |
| 438 | fill_color.green*=gamma; |
| 439 | fill_color.red*=gamma; |
cristy | a19f1d7 | 2012-08-07 18:24:38 +0000 | [diff] [blame] | 440 | CompositePixelOver(image,&fill_color,fill_color.alpha,q,(double) |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 441 | GetPixelAlpha(image,q),q); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 442 | q+=GetPixelChannels(image); |
| 443 | } |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 444 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 445 | break; |
| 446 | if (image->previous == (Image *) NULL) |
| 447 | { |
| 448 | status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y, |
| 449 | image->rows); |
| 450 | if (status == MagickFalse) |
| 451 | break; |
| 452 | } |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 453 | } |
| 454 | /* |
| 455 | Relinquish resources. |
| 456 | */ |
cristy | 0553bd5 | 2013-06-30 15:53:50 +0000 | [diff] [blame] | 457 | pixel_info=RelinquishVirtualMemory(pixel_info); |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 458 | draw_info=DestroyDrawInfo(draw_info); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 459 | caption=DestroyString(caption); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 460 | return(GetFirstImageInList(image)); |
| 461 | } |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 462 | #endif |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 463 | |
| 464 | /* |
| 465 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 466 | % % |
| 467 | % % |
| 468 | % % |
| 469 | % R e g i s t e r P A N G O I m a g e % |
| 470 | % % |
| 471 | % % |
| 472 | % % |
| 473 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 474 | % |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 475 | % RegisterPANGOImage() adds attributes for the Pango Markup Language format to |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 476 | % the list of supported formats. The attributes include the image format |
| 477 | % tag, a method to read and/or write the format, whether the format |
| 478 | % supports the saving of more than one frame to the same file or blob, |
| 479 | % whether the format supports native in-memory I/O, and a brief |
| 480 | % description of the format. |
| 481 | % |
| 482 | % The format of the RegisterPANGOImage method is: |
| 483 | % |
| 484 | % size_t RegisterPANGOImage(void) |
| 485 | % |
| 486 | */ |
| 487 | ModuleExport size_t RegisterPANGOImage(void) |
| 488 | { |
| 489 | char |
| 490 | version[MaxTextExtent]; |
| 491 | |
| 492 | MagickInfo |
| 493 | *entry; |
| 494 | |
| 495 | *version='\0'; |
| 496 | #if defined(PANGO_VERSION_STRING) |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 497 | (void) FormatLocaleString(version,MaxTextExtent,"Pangocairo %s", |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 498 | PANGO_VERSION_STRING); |
| 499 | #endif |
| 500 | entry=SetMagickInfo("PANGO"); |
cristy | 19642b0 | 2012-03-26 19:33:21 +0000 | [diff] [blame] | 501 | #if defined(MAGICKCORE_PANGOCAIRO_DELEGATE) |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 502 | entry->decoder=(DecodeImageHandler *) ReadPANGOImage; |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 503 | #endif |
| 504 | entry->description=ConstantString("Pango Markup Language"); |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 505 | if (*version != '\0') |
| 506 | entry->version=ConstantString(version); |
| 507 | entry->adjoin=MagickFalse; |
| 508 | entry->module=ConstantString("PANGO"); |
| 509 | (void) RegisterMagickInfo(entry); |
| 510 | return(MagickImageCoderSignature); |
| 511 | } |
| 512 | |
| 513 | /* |
| 514 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 515 | % % |
| 516 | % % |
| 517 | % % |
| 518 | % U n r e g i s t e r P A N G O I m a g e % |
| 519 | % % |
| 520 | % % |
| 521 | % % |
| 522 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 523 | % |
cristy | fde4ac3 | 2012-03-15 11:25:35 +0000 | [diff] [blame] | 524 | % UnregisterPANGOImage() removes format registrations made by the Pango module |
| 525 | % from the list of supported formats. |
cristy | bb06a1a | 2012-03-15 00:16:53 +0000 | [diff] [blame] | 526 | % |
| 527 | % The format of the UnregisterPANGOImage method is: |
| 528 | % |
| 529 | % UnregisterPANGOImage(void) |
| 530 | % |
| 531 | */ |
| 532 | ModuleExport void UnregisterPANGOImage(void) |
| 533 | { |
| 534 | (void) UnregisterMagickInfo("PANGO"); |
| 535 | } |