function imageapi_imagemagick_image_resize in ImageAPI 5
Same name and namespace in other branches
- 6 imageapi_imagemagick.module \imageapi_imagemagick_image_resize()
File
- ./
imageapi_imagemagick.module, line 114 - 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;
}