📜  PHP | Gmagick implodeimage()函数

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

PHP | Gmagick implodeimage()函数

Gmagick::implodeimage()函数是PHP中的一个内置函数,用于创建作为现有图像副本的新图像。它使用按指定百分比内爆的图像像素。
句法:

mixed Gmagick::implodeimage( $radius )

参数:此函数接受单个参数$radius ,它保存内爆的半径。
返回值:此函数返回内爆的 Gmagick 对象。
错误/异常:此函数在错误时抛出 GmagickException。
下面的程序说明了PHP中的Gmagick::implodeimage()函数:
方案一:
输入图像:

php
implodeimage(12);
 
header('Content-type: image/png');
   
// Output the image
echo $gmagick;
?>


php
setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
   
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
    
// Function to draw circle 
$draw->circle(250, 250, 100, 150);
  
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
$gmagick->drawImage($draw);
 
// Implode the image.
$gmagick->implodeimage(1);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


输出:

方案二:

PHP

setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
   
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
    
// Function to draw circle 
$draw->circle(250, 250, 100, 150);
  
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
$gmagick->drawImage($draw);
 
// Implode the image.
$gmagick->implodeimage(1);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: http: PHP。 PHP