ImagickDraw::getFillOpacity()函数是PHP中的内置函数,用于获取使用填充颜色或填充纹理进行绘制时使用的不透明度。完全不透明为1,完全透明为0。
用法:
float ImagickDraw::getFillOpacity( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含不透明度的浮点值。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFillOpacity()函数:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Get the Fill Opacity
$fillOpacity = $draw->getFillOpacity();
echo $fillOpacity;
?>
输出:
1 // which is the default value.
程序2:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the Fill Opacity
$draw->setFillOpacity(0.6);
// Get the Fill Opacity
$fillOpacity = $draw->getFillOpacity();
echo $fillOpacity;
?>
输出:
0.6
程序3:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->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
相关用法
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw setFillOpacity()用法及代码示例
- PHP ImagickDraw pathStart()用法及代码示例
- PHP ImagickDraw setStrokeLineCap()用法及代码示例
- PHP ImagickDraw getStrokeLineCap()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()用法及代码示例
- PHP ImagickDraw getStrokeLineJoin()用法及代码示例
- PHP ImagickDraw popClipPath()用法及代码示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw setFontWeight()用法及代码示例
- PHP ImagickDraw setTextAntialias()用法及代码示例
- PHP ImagickDraw setTextDecoration()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getFillOpacity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。