You are here

function imageapi_imagemagick_image_resize in ImageAPI 6

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

File

./imageapi_imagemagick.module, line 115
ImageMagick toolkit functions

Code

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