如何使用imagemagick转换进行缩放和裁剪?

时间:2013-09-12 10:52:41

标签: imagemagick

给出以下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命令中执行此操作?

1 个答案:

答案 0 :(得分:19)

我相信答案是convert "$input" -resize "${width}x${height}^" -gravity center -crop "${width}x${height}+0+0" $output