PHP | Gmagick cropimage()函数
Gmagick::cropimage()函数是PHP中的一个内置函数,用于提取图像的区域。此函数裁剪图像的一部分。
句法:
public Gmagick::cropimage( $width , $height , $x , $y )
参数:此函数接受上面提到的四个参数,如下所述。
- $width:该参数用于指定裁剪后图像的宽度。
- $height:该参数用于指定裁剪后图像的高度。
- $x:该参数用于指定裁剪后图像左上角的X坐标。
- $y:该参数用于指定裁剪后图像左上角的Y坐标。
返回值:此函数返回裁剪后的 Gmagick 对象。
下面的程序说明了PHP中的Gmagick::cropimage()函数:
原图1:
方案一:
cropimage(390, 100, 0, 0);
header("Content-Type: image/jpg");
// Display the image
echo $image->getImageBlob();
?>
输出:
原始图像 2:
方案二:
setFillColor(new GmagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new GmagickPixel('white'));
// Draw the image
$im->drawImage($draw);
// Set the image format
$im->setImageFormat('png');
// Gmagick function to crop Image
$im->cropimage(420, 120, 0, 0);
header("Content-Type: image/jpg");
// Display the image
echo $im->getImageBlob();
?>
输出:
参考: http: PHP。 PHP