📜  PHP | Gmagick motionblurimage()函数

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

PHP | Gmagick motionblurimage()函数

Gmagick::motionblurimage()函数是PHP中的一个内置函数,用于模拟运动模糊。此函数将图像与给定半径和标准偏差的高斯运算符进行卷积。
句法:

Gmagick Gmagick::motionblurimage( $radius, $sigma, $angle )

参数:此函数接受三个参数,如上所述,如下所述:

  • $radius:此参数用于设置高斯的半径,以像素为单位。它不计算中心像素。如果半径值为零,则意味着将自动选择半径。
  • $sigma:这个参数用来求高斯的标准差,以像素为单位。
  • $angle:此参数沿此角度应用效果。

返回值:此函数在成功时返回 Gmagick 对象。
错误/异常:此函数在错误时抛出 GmagickException。
下面的程序说明了PHP中的Gmagick::motionblurimage()函数:
方案一:
输入图像:

php
motionblurimage(20, 20, 45);
 
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);
 
   
// Use motionblurimage function
$gmagick->motionblurimage(15, 20, 35);
  
// 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);
 
   
// Use motionblurimage function
$gmagick->motionblurimage(15, 20, 35);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: http: PHP。 PHP