PHP | GmagickDraw getfillopacity()函数
GmagickDraw::getfillopacity()函数是PHP中的一个内置函数,用于获取使用填充颜色或填充纹理绘制时使用的不透明度。完全不透明为 1,完全透明为 0。
句法:
float GmagickDraw::getfillopacity( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含不透明度的浮点值。
异常:此函数在出错时抛出 GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::getfillopacity()函数:
使用图像:
方案一:
getfillopacity();
echo $fillOpacity;
?>
输出:
0 // Which is the default value
方案二:
setFillColor('#0E0E0E');
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
// Set the fill color
$draw->setFillColor('yellow');
// Set the font size
$draw->setFontSize(20);
// Set the fill opacity
$draw->setfillopacity(1);
// Annotate a text
$draw->annotate(50, 30, 'The fill opacity here is '
. $draw->getfillopacity());
// Set the fill opacity
$draw->setfillopacity(0.5);
// Annotate a text
$draw->annotate(50, 100, 'The fill opacity here is '
. $draw->getfillopacity());
// Draw the image
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/gmagickdraw.getfillopacity。 PHP