📜  PHP |想象一下cropImage()函数

📅  最后修改于: 2022-05-13 01:56:55.339000             🧑  作者: Mango

PHP |想象一下cropImage()函数

Imagick::cropImage()函数是PHP中的一个内置函数,用于提取图像的区域。
句法:

int Imagick::cropImage( $width, $height, $x, $y )

参数:此函数接受上面提到的四个参数,如下所述。

  • $width:该参数用于指定裁剪后图像的宽度。
  • $height:该参数用于指定裁剪后图像的高度。
  • $x:该参数用于指定裁剪后图像左上角的X坐标。
  • $y:该参数用于指定裁剪后图像左上角的Y坐标。

返回值:此函数在成功时返回 True。
下面的程序说明了PHP中的Imagick::cropImage()函数:
原图:

方案一:

php
cropImage(390, 100, 0, 0);
       
header("Content-Type: image/jpg");
   
// Display the image
echo $image->getImageBlob();
?>


php
setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['textHeight'],
         new ImagickPixel('white'));
          
// Draw the image        
$im->drawImage($draw);
 
// Set the image format
$im->setImageFormat('png');
  
// Imagick function to crop Image
$im->cropImage(420, 120, 0, 0);
         
header("Content-Type: image/jpg");
     
// Display the image
echo $im->getImageBlob();
?>


输出:

原图:

方案二:

PHP

setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['textHeight'],
         new ImagickPixel('white'));
          
// Draw the image        
$im->drawImage($draw);
 
// Set the image format
$im->setImageFormat('png');
  
// Imagick function to crop Image
$im->cropImage(420, 120, 0, 0);
         
header("Content-Type: image/jpg");
     
// Display the image
echo $im->getImageBlob();
?>

输出:

参考: http: PHP。 PHP