]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Thu, 1 Apr 2010 18:56:37 +0000 (18:56 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Thu, 1 Apr 2010 18:56:37 +0000 (18:56 +0000)
ChangeLog
magick/transform.c

index dcc27f816468d0f394c4efb751853d875ac2ca10..7ee1ca492d342e24b48784ad8fbe809a965bc16a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,11 @@
 2010-03-31  6.6.1-0 Anthony Thyssen <A.Thyssen@griffith...>
-  * Fixed bug in Equal-Size Tile Cropping, when image has a page offset.
+  * Fixed bug in equal-size tile cropping, when image has a page offset.
 
 2010-03-31  6.6.1-0 Cristy  <quetzlzacatenango@image...>
   * The -recolor 4x4 matrix is now interpretted properly (previously it
     summed rather attenuating the alpha channel).
+  * Support writing 1-bit PSD images.
+  * Support LCMS 2.0.
 
 2010-03-30  6.6.1-0 Glenn Randers-Pehrson <glennrp@image...>
   * The new coders/png.c was failing to read a 1-bit paletted image properly.
index d51b49c9090440255c0d4124b9d548f951e2de6e..0e9ac247b36bffd52f538ee55cef42d03a0c70ca 100644 (file)
@@ -1737,7 +1737,7 @@ MagickExport MagickBooleanType TransformImage(Image **image,
                   (offset.y+(geometry.y < 0 ? geometry.y : 0)));
               }
             crop.height-=crop.y;
-            crop.y += transform_image->page.y;
+            crop.y+=transform_image->page.y;
             for (offset.x=0; offset.x < (double) width; )
             {
               if ((flags & AspectValue) == 0)
@@ -1757,7 +1757,7 @@ MagickExport MagickBooleanType TransformImage(Image **image,
                     (offset.x+(geometry.x < 0 ? geometry.x : 0)));
                 }
               crop.width-=crop.x;
-              crop.x += transform_image->page.x;
+              crop.x+=transform_image->page.x;
               next=CropImage(transform_image,&crop,&(*image)->exception);
               if (next == (Image *) NULL)
                 break;