Gmagick::motionblurimage()函数是PHP中的内置函数,用于模拟运动模糊。此函数使用给定半径和标准偏差的高斯算符对图像进行卷积。
用法:
Gmagick Gmagick::motionblurimage( $radius, $sigma, $angle )
参数:此函数接受上述和以下所述的三个参数:
- $radius:此参数用于设置高斯半径,以像素为单位。它不计算中心像素。如果半径值为零,则表示将自动选择半径。
- $sigma:此参数用于查找高斯的标准偏差(以像素为单位)。
- $angle:此参数沿该角度应用效果。
返回值:成功时,此函数返回Gmagick对象。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的Gmagick::motionblurimage()函数:
程序1:
输入图片:
<?php
// Create a Gmagick object
$gmagick = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/tech.png');
// Use motionblurimage function
$gmagick->motionblurimage(20, 20, 45);
header('Content-type: image/png');
// Ouput the image
echo $gmagick;
?>
输出:
程序2:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Create GmagickPixel object
$strokeColor = new GmagickPixel('Red');
$fillColor = new GmagickPixel('Green');
// Set the color, opacity of image
$draw->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.net/manual/en/gmagick.motionblurimage.php
相关用法
- PHP Imagick motionBlurImage()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick current()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick getimagechanneldepth()用法及代码示例
- PHP Gmagick setimagechanneldepth()用法及代码示例
- PHP Gmagick getimageblueprimary()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick queryfontmetrics()用法及代码示例
- PHP Gmagick cyclecolormapimage()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick getImageMatte()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Gmagick motionblurimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。