PHP | imagickdraw getFillOpacity()函数
ImagickDraw::getFillOpacity()函数是PHP中的一个内置函数,用于获取使用填充颜色或填充纹理绘制时使用的不透明度。完全不透明为 1,完全透明为 0。
句法:
float ImagickDraw::getFillOpacity( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含不透明度的浮点值。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFillOpacity()函数:
方案一:
getFillOpacity();
echo $fillOpacity;
?>
输出:
1 // which is the default value.
方案二:
setFillOpacity(0.6);
// Get the Fill Opacity
$fillOpacity = $draw->getFillOpacity();
echo $fillOpacity;
?>
输出:
0.6
方案 3:
newImage(800, 250, 'black');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the fill color
$draw->setFillColor('yellow');
// Set the font size
$draw->setFontSize(20);
// Annotate a text
$draw->annotation(50, 100, 'The fill opacity here is '
. $draw->getFillOpacity());
// Set the fill opacity
$draw->setFillOpacity(0.4);
// Annotate a text
$draw->annotation(50, 200, 'The fill opacity here is '
. $draw->getFillOpacity());
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagickdraw.getfillopacity。 PHP