PHP | Gmagick embossimage()函数
Gmagick::embossimage()函数是PHP中的一个内置函数,用于返回具有三维效果的灰度图像。该函数使用给定半径和标准差的高斯运算符对图像进行过滤。
句法:
Gmagick Gmagick::embossimage( $radius, $sigma )
参数:该函数接受上面提到的两个参数,如下所述:
- $radius:此参数保存半径效果的值。
- $sigma:此参数保存 sigma 效果的值。
返回值:此函数返回浮雕 Gmagick 对象。
错误/异常:此函数在错误时抛出 GmagickException。
下面的程序说明了PHP中的Gmagick::embossimage()函数:
方案一:
原图:
php
embossimage(12, 5);
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);
// Emboss the image.
$gmagick->embossimage(15, 6);
// 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);
// Emboss the image.
$gmagick->embossimage(15, 6);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http: PHP。 PHP