function image_resize
Resizes an image to the given dimensions (ignoring aspect ratio).
Parameters
$image: An image object returned by image_load().
$width: The target width, in pixels.
$height: The target height, in pixels.
Return value
TRUE on success, FALSE on failure.
See also
Related topics
4 calls to image_resize()
- ImageToolkitUnitTest::testResize in modules/
simpletest/ tests/ image.test - Test the image_resize() function.
- image_resize_effect in modules/
image/ image.effects.inc - Image effect callback; Resize an image resource.
- image_scale in includes/
image.inc - Scales an image while maintaining aspect ratio.
- image_scale_and_crop in includes/
image.inc - Scales an image to the exact width and height given.
File
-
includes/
image.inc, line 279
Code
function image_resize(stdClass $image, $width, $height) {
$width = (int) round($width);
$height = (int) round($height);
return image_toolkit_invoke('resize', $image, array(
$width,
$height,
));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.