Index: Driver/Imagick2.php =================================================================== RCS file: /repository/pear/Image_Transform/Driver/Imagick2.php,v retrieving revision 1.8 diff -u -r1.8 Imagick2.php --- Driver/Imagick2.php 10 Aug 2005 19:26:06 -0000 1.8 +++ Driver/Imagick2.php 18 Nov 2005 23:01:02 -0000 @@ -307,7 +307,7 @@ if (!$this->intersects($width, $height, $x, $y)) { return PEAR::raiseError('Nothing to crop', IMAGE_TRANSFORM_ERROR_OUTOFBOUND); } - if (!imagick_crop($this->imageHandle, $x, $y, $x + $width, $y + $height)) { + if (!imagick_crop($this->imageHandle, $x, $y, $width, $height)) { return $this->raiseError('Couldn\'t crop image.', IMAGE_TRANSFORM_ERROR_FAILED); }