(PECL imagick 2, PECL imagick 3)
Imagick::chopImage — 移除图像区域并裁剪
width
已移除区域的宽度
height
已移除区域的高度
x
已移除区域的 X 原点
y
已移除区域的 Y 原点
成功时返回 true
。
错误时抛出 ImagickException。
示例 #1 使用 Imagick::chopImage()
使用 Imagick::chopImage 的示例
<?php
/* 创建一些对象 */
$image = new Imagick();
$pixel = new ImagickPixel( 'gray' );
/* 新图像 */
$image->newImage(400, 200, $pixel);
/* 裁剪图像 */
$image->chopImage(200, 200, 0, 0);
/* 给图像设置格式 */
$image->setImageFormat('png');
/* 使用头输出图像 */
header('Content-type: image/png');
echo $image;
?>