我正在使用php Imagick :: cropImage,我遇到了一些麻烦。
假设我有这张图片:
我想用这个裁剪区裁剪图像:
这是我正在使用的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图像(这不是我想要的):
我想要的是200px x 200px图像,其中填充其余部分(检查图案说明透明像素):
如何填充这些空像素?
答案 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 );
用背景填充空像素
$image = new Imagick();
$image->readImage('rose:');
$image->setImageBackgroundColor('orange');
$image->cropImage( $width, $height, $x, $y );
$image->extentImage( $width, $height, $x, $y );
或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);
要设置透明空像素,请在背景颜色之前设置遮罩
$image->setImageMatte(true);
$image->setImageBackgroundColor('transparent');