]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authoranthony <anthony@git.imagemagick.org>
Tue, 15 May 2012 02:28:02 +0000 (02:28 +0000)
committeranthony <anthony@git.imagemagick.org>
Tue, 15 May 2012 02:28:02 +0000 (02:28 +0000)
MagickCore/property.c

index fe9e6dc4b799f58ea013743373dfd25320a06f8c..56ebaaf056c7721c89f781635f431bfbcc1cd630 100644 (file)
@@ -2704,14 +2704,14 @@ MagickExport const char *GetMagickProperty(const ImageInfo *image_info,
     }
     case 'r':
     {
-      /* FUTURE: Obsolete */
+      /* This matches %[fx:resolution.x] */
       if (LocaleCompare("resolution.x",property) == 0)
         {
           (void) FormatLocaleString(value,MaxTextExtent,"%g",
             image->resolution.x);
           break;
         }
-      /* FUTURE: Obsolete */
+      /* This matches %[fx:resolution.y] */
       if (LocaleCompare("resolution.y",property) == 0)
         {
           (void) FormatLocaleString(value,MaxTextExtent,"%g",
@@ -2802,7 +2802,7 @@ MagickExport const char *GetMagickProperty(const ImageInfo *image_info,
         }
       break;
     }
-    case 'x': /* ( X resolution, (with units) */
+    case 'x': /* FUTURE: Obsolete X resolution */
     {
       if ((LocaleCompare("xresolution",property) == 0) ||
           (LocaleCompare("x-resolution",property) == 0) )
@@ -2813,7 +2813,7 @@ MagickExport const char *GetMagickProperty(const ImageInfo *image_info,
         }
       break;
     }
-    case 'y': /* ( Y resolution, (with units) */
+    case 'y': /* FUTURE: Obsolete Y resolution */
     {
       if ((LocaleCompare("yresolution",property) == 0) ||
           (LocaleCompare("y-resolution",property) == 0) )