PHP | Gmagick edgeimage()函数
Gmagick::edgeimage()函数是PHP中的一个内置函数,用于使用给定半径的卷积滤波器增强图像边缘。半径 0 用作自动选择。
句法:
Gmagick Gmagick::edgeimage( $radius )
参数:此函数接受单个参数作为$radius ,它采用操作的半径。
返回值:此函数返回带有图像增强功能的 Gmagick 对象。
错误/异常:此函数在错误时抛出 GmagickException。
下面的程序说明了PHP中的Gmagick::edgeimage()函数:
方案一:
原图:
php
edgeimage(15);
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 edgeimage() function
$gmagick->edgeimage(10);
// 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 edgeimage() function
$gmagick->edgeimage(10);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http: PHP。 PHP