You are here

function imageapi_imagemagick_image_crop in ImageAPI 6

Same name and namespace in other branches
  1. 5 imageapi_imagemagick.module \imageapi_imagemagick_image_crop()

File

./imageapi_imagemagick.module, line 108
ImageMagick toolkit functions

Code

function imageapi_imagemagick_image_crop(&$image, $x, $y, $width, $height) {
  $image->ops[] = '-crop ' . (int) $width . 'x' . (int) $height . '+' . (int) $x . '+' . (int) $y . '!';
  $image->info['width'] = $width;
  $image->info['height'] = $height;
  return TRUE;
}