PHP Imagick裁剪负偏移的图像并保留负空间

时间:2015-04-24 13:53:37

标签: php imagemagick imagick

我正在使用php Imagick :: cropImage,我遇到了一些麻烦。

假设我有这张图片:

Test Image

我想用这个裁剪区裁剪图像: Image Crop Area

这是我正在使用的PHP代码:

$width = 200;
$height = 200;
$x = -100;
$y = -50;

$image = new Imagick();
$image->readImage($path_to_image);
$image->cropImage( $width, $height, $x, $y );
$image->writeImage($path_to_image);
$image->clear();
$image->destroy();

结果是50px x 150px图像(这不是我想要的):

Image Crop Result

我想要的是200px x 200px图像,其中填充其余部分(检查图案说明透明像素):

Image Crop Desired Result

如何填充这些空像素?

1 个答案:

答案 0 :(得分:6)

裁剪后使用Imagick::extentImage将图像增长到预期的图像尺寸。填空"空"无论是设置背景颜色还是根据需要进行填充填充,像素都很容易。

$width = 100;
$height = 100;
$x = -50;
$y = -25;

$image = new Imagick();
$image->readImage('rose:');
$image->cropImage( $width, $height, $x, $y );
$image->extentImage( $width, $height, $x, $y );

crop with negative offset

用背景填充空像素

$image = new Imagick();
$image->readImage('rose:');
$image->setImageBackgroundColor('orange');
$image->cropImage( $width, $height, $x, $y );
$image->extentImage( $width, $height, $x, $y );

fill with background color

或ImagickDraw

$image = new Imagick();
$image->readImage('rose:');
$image->cropImage( $width, $height, $x, $y );
$image->extentImage( $width, $height, $x, $y );

$draw = new ImagickDraw();
$draw->setFillColor('lime');
$draw->color(0, 0, Imagick::PAINT_FLOODFILL);
$image->drawImage($draw);

fill with draw

修改

要设置透明空像素,请在背景颜色之前设置遮罩

$image->setImageMatte(true);
$image->setImageBackgroundColor('transparent');