📜  PHP | Gmagick trimimage()函数

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

PHP | Gmagick trimimage()函数

Gmagick::trimimage()函数是PHP中的一个内置函数,用于从图像中删除作为背景颜色的边缘。

句法:

Gmagick Gmagick::trimimage( float $fuzz )

参数:此函数接受单个参数$fuzz来保存模糊。

返回值:此函数在成功时返回 TRUE。

异常:此函数在错误时抛出 GmagickException。

下面给出的程序说明了PHP中的Gmagick::trimimage()函数

Program-1(修剪图像):

trimimage(10);
  
// Output the image  
header('Content-type: image/png');  
echo $gmagick;  
?>

输出:

程序 2(修整绘图):

setFillColor('white');
   
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
   
// Set the fill color
$draw->setFillColor('red');
   
// Set the font size
$draw->setfontsize(50);
   
// Annotate a text
$draw->annotate(30, 100, 'GeeksforGeeks');
   
// Use of drawimage function
$gmagick->drawImage($draw);
   
// Trim the image
$gmagick->trimimage(10); 
   
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagick.trimimage。 PHP