Index: image.imagemagick.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.imagemagick.inc,v
retrieving revision 1.3.2.12
diff -u -p -u -r1.3.2.12 image.imagemagick.inc
--- image.imagemagick.inc	4 Sep 2007 17:20:59 -0000	1.3.2.12
+++ image.imagemagick.inc	4 Sep 2007 19:32:32 -0000
@@ -84,7 +84,7 @@ function _image_imagemagick_check_path($
  * Resize an image to the given width and height.
  */
 function image_imagemagick_resize($source, $dest, $width, $height) {
-  $filter = ' -scale '. $width .'x'. $height .'! -filter QUADRATIC';
+  $filter = ' -scale '. (int) $width .'x'. (int) $height .'! -filter QUADRATIC';
   return _image_imagemagick_convert($source, $dest, $filter);
 }
 
@@ -100,7 +100,7 @@ function image_imagemagick_rotate($sourc
  * Crop an image to the specified dimensions.
  */
 function image_imagemagick_crop($source, $dest, $x, $y, $width, $height) {
-  $filter = ' -crop '. $width .'x'. $height .'+'. $x .'+'. $y;
+  $filter = ' -crop '. (int) $width .'x'. (int) $height .'+'. (int) $x .'+'. (int) $y;
   return _image_imagemagick_convert($source, $dest, $filter);
 }
 

