cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % L AAA BBBB EEEEE L % |
| 7 | % L A A B B E L % |
| 8 | % L AAAAA BBBB EEE L % |
| 9 | % L A A B B E L % |
| 10 | % LLLLL A A BBBB EEEEE LLLLL % |
| 11 | % % |
| 12 | % % |
| 13 | % Read ASCII String As An Image. % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % John Cristy % |
| 17 | % July 1992 % |
| 18 | % % |
| 19 | % % |
cristy | 1454be7 | 2011-12-19 01:52:48 +0000 | [diff] [blame] | 20 | % Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization % |
cristy | 3ed852e | 2009-09-05 21:47:34 +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 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 42 | #include "MagickCore/studio.h" |
| 43 | #include "MagickCore/annotate.h" |
| 44 | #include "MagickCore/blob.h" |
| 45 | #include "MagickCore/blob-private.h" |
| 46 | #include "MagickCore/draw.h" |
| 47 | #include "MagickCore/exception.h" |
| 48 | #include "MagickCore/exception-private.h" |
| 49 | #include "MagickCore/image.h" |
| 50 | #include "MagickCore/image-private.h" |
| 51 | #include "MagickCore/list.h" |
| 52 | #include "MagickCore/magick.h" |
| 53 | #include "MagickCore/memory_.h" |
| 54 | #include "MagickCore/property.h" |
| 55 | #include "MagickCore/quantum-private.h" |
| 56 | #include "MagickCore/static.h" |
| 57 | #include "MagickCore/string_.h" |
| 58 | #include "MagickCore/module.h" |
| 59 | #include "MagickCore/utility.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 60 | |
| 61 | /* |
| 62 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 63 | % % |
| 64 | % % |
| 65 | % % |
| 66 | % R e a d L A B E L I m a g e % |
| 67 | % % |
| 68 | % % |
| 69 | % % |
| 70 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 71 | % |
| 72 | % ReadLABELImage() reads a LABEL image file and returns it. It |
| 73 | % allocates the memory necessary for the new Image structure and returns a |
| 74 | % pointer to the new image. |
| 75 | % |
| 76 | % The format of the ReadLABELImage method is: |
| 77 | % |
| 78 | % Image *ReadLABELImage(const ImageInfo *image_info, |
| 79 | % ExceptionInfo *exception) |
| 80 | % |
| 81 | % A description of each parameter follows: |
| 82 | % |
| 83 | % o image_info: the image info. |
| 84 | % |
| 85 | % o exception: return any errors or warnings in this structure. |
| 86 | % |
| 87 | */ |
| 88 | static Image *ReadLABELImage(const ImageInfo *image_info, |
| 89 | ExceptionInfo *exception) |
| 90 | { |
| 91 | char |
| 92 | geometry[MaxTextExtent], |
| 93 | *property; |
| 94 | |
| 95 | const char |
| 96 | *label; |
| 97 | |
| 98 | DrawInfo |
| 99 | *draw_info; |
| 100 | |
| 101 | Image |
| 102 | *image; |
| 103 | |
| 104 | MagickBooleanType |
| 105 | status; |
| 106 | |
| 107 | TypeMetric |
| 108 | metrics; |
| 109 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 110 | size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 111 | height, |
| 112 | width; |
| 113 | |
| 114 | /* |
| 115 | Initialize Image structure. |
| 116 | */ |
| 117 | assert(image_info != (const ImageInfo *) NULL); |
| 118 | assert(image_info->signature == MagickSignature); |
| 119 | if (image_info->debug != MagickFalse) |
| 120 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 121 | image_info->filename); |
| 122 | assert(exception != (ExceptionInfo *) NULL); |
| 123 | assert(exception->signature == MagickSignature); |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 124 | image=AcquireImage(image_info,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 125 | (void) ResetImagePage(image,"0x0+0+0"); |
cristy | 018f07f | 2011-09-04 21:15:19 +0000 | [diff] [blame] | 126 | property=InterpretImageProperties(image_info,image,image_info->filename, |
| 127 | exception); |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 128 | (void) SetImageProperty(image,"label",property,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 129 | property=DestroyString(property); |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 130 | label=GetImageProperty(image,"label",exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 131 | draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL); |
| 132 | draw_info->text=ConstantString(label); |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 133 | if ((*label != '\0') && (image->rows != 0) && (image_info->pointsize == 0.0)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 134 | { |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 135 | double |
| 136 | high, |
| 137 | low; |
| 138 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 139 | /* |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 140 | Auto fit text into bounding box. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 141 | */ |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 142 | for ( ; ; ) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 143 | { |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 144 | (void) FormatLocaleString(geometry,MaxTextExtent,"%+g%+g", |
| 145 | -metrics.bounds.x1,metrics.ascent); |
| 146 | if (draw_info->gravity == UndefinedGravity) |
| 147 | (void) CloneString(&draw_info->geometry,geometry); |
| 148 | status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception); |
| 149 | (void) status; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 150 | width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); |
anthony | d7c0545 | 2010-09-12 01:02:02 +0000 | [diff] [blame] | 151 | height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 152 | if ((width > image->columns) && (height > image->rows)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 153 | break; |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 154 | draw_info->pointsize*=2.0; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 155 | } |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 156 | high=draw_info->pointsize/2.0; |
| 157 | low=high/2.0; |
| 158 | while ((high-low) > 1.0) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 159 | { |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 160 | draw_info->pointsize=(low+high)/2.0; |
| 161 | (void) FormatLocaleString(geometry,MaxTextExtent,"%+g%+g", |
| 162 | -metrics.bounds.x1,metrics.ascent); |
| 163 | if (draw_info->gravity == UndefinedGravity) |
| 164 | (void) CloneString(&draw_info->geometry,geometry); |
| 165 | status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 166 | width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); |
anthony | d7c0545 | 2010-09-12 01:02:02 +0000 | [diff] [blame] | 167 | height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 168 | if ((width <= image->columns) && (height <= image->rows)) |
| 169 | low=draw_info->pointsize+1.0; |
| 170 | else |
| 171 | high=draw_info->pointsize-1.0; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 172 | } |
cristy | dce9cde | 2012-08-22 12:58:16 +0000 | [diff] [blame] | 173 | for (draw_info->pointsize=(low+high)/2.0; ; ) |
| 174 | { |
| 175 | (void) FormatLocaleString(geometry,MaxTextExtent,"%+g%+g", |
| 176 | -metrics.bounds.x1,metrics.ascent); |
| 177 | if (draw_info->gravity == UndefinedGravity) |
| 178 | (void) CloneString(&draw_info->geometry,geometry); |
| 179 | status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception); |
| 180 | width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); |
| 181 | height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); |
| 182 | if ((width <= image->columns) && (height <= image->rows)) |
| 183 | break; |
| 184 | draw_info->pointsize--; |
| 185 | } |
| 186 | draw_info->pointsize=floor(draw_info->pointsize); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 187 | } |
cristy | 5cbc016 | 2011-08-29 00:36:28 +0000 | [diff] [blame] | 188 | status=GetMultilineTypeMetrics(image,draw_info,&metrics,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 189 | if (status == MagickFalse) |
| 190 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 191 | image=DestroyImageList(image); |
| 192 | return((Image *) NULL); |
| 193 | } |
| 194 | if (image->columns == 0) |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 195 | image->columns=(size_t) (metrics.width+draw_info->stroke_width+1.5); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 196 | if (image->columns == 0) |
cristy | 024843f | 2011-06-03 17:52:52 +0000 | [diff] [blame] | 197 | image->columns=(size_t) (draw_info->pointsize+draw_info->stroke_width+1.5); |
cristy | a2f09b9 | 2012-05-01 12:07:49 +0000 | [diff] [blame] | 198 | if (draw_info->gravity == UndefinedGravity) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 199 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 200 | (void) FormatLocaleString(geometry,MaxTextExtent,"%+g%+g", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 201 | -metrics.bounds.x1+draw_info->stroke_width/2.0,metrics.ascent+ |
| 202 | draw_info->stroke_width/2.0); |
cristy | a2f09b9 | 2012-05-01 12:07:49 +0000 | [diff] [blame] | 203 | (void) CloneString(&draw_info->geometry,geometry); |
| 204 | } |
| 205 | if (draw_info->direction == RightToLeftDirection) |
| 206 | { |
cristy | 024843f | 2011-06-03 17:52:52 +0000 | [diff] [blame] | 207 | if (draw_info->direction == RightToLeftDirection) |
| 208 | (void) FormatLocaleString(geometry,MaxTextExtent,"%+g%+g", |
| 209 | image->columns-(metrics.bounds.x2+draw_info->stroke_width/2.0), |
cristy | b93d54f | 2012-07-01 01:32:47 +0000 | [diff] [blame] | 210 | metrics.ascent+draw_info->stroke_width/2.0); |
cristy | a2f09b9 | 2012-05-01 12:07:49 +0000 | [diff] [blame] | 211 | (void) CloneString(&draw_info->geometry,geometry); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 212 | } |
| 213 | if (image->rows == 0) |
cristy | 524222d | 2011-04-25 00:37:06 +0000 | [diff] [blame] | 214 | image->rows=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); |
cristy | 06609ee | 2010-03-17 20:21:27 +0000 | [diff] [blame] | 215 | if (image->rows == 0) |
cristy | 524222d | 2011-04-25 00:37:06 +0000 | [diff] [blame] | 216 | image->rows=(size_t) floor(draw_info->pointsize+draw_info->stroke_width+ |
| 217 | 0.5); |
cristy | ea1a8aa | 2011-10-20 13:24:06 +0000 | [diff] [blame] | 218 | if (SetImageBackgroundColor(image,exception) == MagickFalse) |
cristy | 95524f9 | 2010-02-16 18:44:34 +0000 | [diff] [blame] | 219 | { |
cristy | 95524f9 | 2010-02-16 18:44:34 +0000 | [diff] [blame] | 220 | image=DestroyImageList(image); |
| 221 | return((Image *) NULL); |
| 222 | } |
cristy | 5cbc016 | 2011-08-29 00:36:28 +0000 | [diff] [blame] | 223 | (void) AnnotateImage(image,draw_info,exception); |
cristy | b70a486 | 2010-06-18 01:18:44 +0000 | [diff] [blame] | 224 | if (image_info->pointsize == 0.0) |
| 225 | { |
| 226 | char |
| 227 | pointsize[MaxTextExtent]; |
| 228 | |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 229 | (void) FormatLocaleString(pointsize,MaxTextExtent,"%.20g", |
cristy | b70a486 | 2010-06-18 01:18:44 +0000 | [diff] [blame] | 230 | draw_info->pointsize); |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 231 | (void) SetImageProperty(image,"label:pointsize",pointsize,exception); |
cristy | b70a486 | 2010-06-18 01:18:44 +0000 | [diff] [blame] | 232 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 233 | draw_info=DestroyDrawInfo(draw_info); |
| 234 | return(GetFirstImageInList(image)); |
| 235 | } |
| 236 | |
| 237 | /* |
| 238 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 239 | % % |
| 240 | % % |
| 241 | % % |
| 242 | % R e g i s t e r L A B E L I m a g e % |
| 243 | % % |
| 244 | % % |
| 245 | % % |
| 246 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 247 | % |
| 248 | % RegisterLABELImage() adds properties for the LABEL image format to |
| 249 | % the list of supported formats. The properties include the image format |
| 250 | % tag, a method to read and/or write the format, whether the format |
| 251 | % supports the saving of more than one frame to the same file or blob, |
| 252 | % whether the format supports native in-memory I/O, and a brief |
| 253 | % description of the format. |
| 254 | % |
| 255 | % The format of the RegisterLABELImage method is: |
| 256 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 257 | % size_t RegisterLABELImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 258 | % |
| 259 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 260 | ModuleExport size_t RegisterLABELImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 261 | { |
| 262 | MagickInfo |
| 263 | *entry; |
| 264 | |
| 265 | entry=SetMagickInfo("LABEL"); |
| 266 | entry->decoder=(DecodeImageHandler *) ReadLABELImage; |
| 267 | entry->adjoin=MagickFalse; |
cristy | 009d739 | 2010-07-25 22:08:41 +0000 | [diff] [blame] | 268 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 269 | entry->description=ConstantString("Image label"); |
| 270 | entry->module=ConstantString("LABEL"); |
| 271 | (void) RegisterMagickInfo(entry); |
| 272 | return(MagickImageCoderSignature); |
| 273 | } |
| 274 | |
| 275 | /* |
| 276 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 277 | % % |
| 278 | % % |
| 279 | % % |
| 280 | % U n r e g i s t e r L A B E L I m a g e % |
| 281 | % % |
| 282 | % % |
| 283 | % % |
| 284 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 285 | % |
| 286 | % UnregisterLABELImage() removes format registrations made by the |
| 287 | % LABEL module from the list of supported formats. |
| 288 | % |
| 289 | % The format of the UnregisterLABELImage method is: |
| 290 | % |
| 291 | % UnregisterLABELImage(void) |
| 292 | % |
| 293 | */ |
| 294 | ModuleExport void UnregisterLABELImage(void) |
| 295 | { |
| 296 | (void) UnregisterMagickInfo("LABEL"); |
| 297 | } |