grab — Crop and resize combined
Description
public Intervention\Image\Image grab(int $width, int $height)
Combine cropping and resizing to format image in a smart way. The method will find the best fitting aspect ratio of your given width and height on the current image automatically, cut it out and resize it to the given dimension.
Parameters
width
The width the image will be resized to after cropping out the best fitting aspect ratio.
height
The height the image will be resized to after cropping out the best fitting aspect ratio.
Return Values
Instance of Intervention\Image\Image
Examples
// open file a image resource
$img = Image::make('public/foo.jpg');
// crop the best fitting 5:3 (600x360) ratio and resize to 600x360 pixel
$img->grab(600, 360);
// crop the best fitting 1:1 ratio (200x200) and resize to 200x200 pixel
$img->grab(200);
See also
当前内容版权归 intervention 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 intervention .