From 2eb9a426fc2dea7e5c17573c7f6f4e2f07739248 Mon Sep 17 00:00:00 2001 From: anthony Date: Tue, 15 May 2012 02:28:02 +0000 Subject: [PATCH] --- MagickCore/property.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MagickCore/property.c b/MagickCore/property.c index fe9e6dc4b..56ebaaf05 100644 --- a/MagickCore/property.c +++ b/MagickCore/property.c @@ -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) ) -- 2.40.0