给出以下PHP代码:
function image_scale_and_crop(stdClass $image, $width, $height) {
$scale = max($width / $image->info['width'], $height / $image->info['height']);
$x = ($image->info['width'] * $scale - $width) / 2;
$y = ($image->info['height'] * $scale - $height) / 2;
if (image_resize($image, $image->info['width'] * $scale, $image->info['height'] * $scale)) {
return image_crop($image, $x, $y, $width, $height);
}
}
要使用英语,首先我们进行调整以保持纵横比,以便图像的较小边缘变为所需的大小,然后将生成的图像沿着较长的边缘裁剪为$width X $height
并切割等量在每一边(较小的一面不需要裁剪)。
是否可以在一个convert
命令中执行此操作?
答案 0 :(得分:19)
我相信答案是convert "$input" -resize "${width}x${height}^" -gravity center -crop "${width}x${height}+0+0" $output
。