Changeset 11602 for ImageMagick/trunk
- Timestamp:
- 07/09/08 18:33:19 (3 months ago)
- Location:
- ImageMagick/trunk/magick
- Files:
-
- 2 modified
-
fx.c (modified) (1 diff)
-
property.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/magick/fx.c
r11597 r11602 1346 1346 return(QuantumScale*atof(statistic)); 1347 1347 } 1348 if (LocaleCompare(symbol,"image.page.height") == 0) 1349 return(image->page.height); 1350 if (LocaleCompare(symbol,"image.page.width") == 0) 1351 return(image->page.width); 1352 if (LocaleCompare(symbol,"image.page.x") == 0) 1353 return(image->page.x); 1354 if (LocaleCompare(symbol,"image.page.y") == 0) 1355 return(image->page.y); 1348 1356 if (LocaleCompare(symbol,"image.resolution.x") == 0) 1349 1357 return(image->x_resolution); -
ImageMagick/trunk/magick/property.c
r11427 r11602 2679 2679 break; 2680 2680 } 2681 case 'H': 2682 { 2683 q+=FormatMagickString(q,extent,"%+ld",image->page.height); 2684 break; 2685 } 2681 2686 case 'O': 2682 2687 { … … 2698 2703 { 2699 2704 q+=FormatMagickString(q,extent,"%lu",image->delay); 2705 break; 2706 } 2707 case 'W': 2708 { 2709 q+=FormatMagickString(q,extent,"%+ld",image->page.width); 2710 break; 2711 } 2712 case 'X': 2713 { 2714 q+=FormatMagickString(q,extent,"%+ld",image->page.x); 2715 break; 2716 } 2717 case 'Y': 2718 { 2719 q+=FormatMagickString(q,extent,"%+ld",image->page.y); 2700 2720 break; 2701 2721 }
