ImagickDraw::getFillColor()函数是PHP中的内置函数,用于获取用于绘制填充对象的填充颜色。
用法:
ImagickPixel ImagickDraw::getFillColor( void )
参数:此函数不接受任何参数。
返回值:此函数返回包含填充颜色的ImagickPixel值。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFillColor()函数:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Get the Fill Color
$colorPixel = $draw->getFillColor();
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>
输出:
srgb(0, 0, 0) // which is black the default color.
程序2:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the Fill Color
$draw->setFillColor('purple');
// Get the Fill Color
$colorPixel = $draw->getFillColor();
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>
输出:
srgb(128, 0, 128)
程序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('cyan');
// Set the font size
$draw->setFontSize(20);
// Annotate a text
$draw->annotation(50, 100, 'The fill color here is '
. $draw->getFillColor()->getColorAsString());
// Set the fill color
$draw->setFillColor('red');
// Annotate a text
$draw->annotation(50, 200, 'The fill color here is '
. $draw->getFillColor()->getColorAsString());
// 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.getfillcolor.php
相关用法
- PHP GmagickDraw getfillcolor()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw getTextKerning()用法及代码示例
- PHP ImagickDraw getStrokeWidth()用法及代码示例
- PHP ImagickDraw getStrokeOpacity()用法及代码示例
- PHP ImagickDraw setClipUnits()用法及代码示例
- PHP ImagickDraw getFillOpacity()用法及代码示例
- PHP ImagickDraw getClipRule()用法及代码示例
- PHP ImagickDraw pathCurveToRelative()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothRelative()用法及代码示例
- PHP ImagickDraw pathEllipticArcAbsolute()用法及代码示例
- PHP ImagickDraw getClipUnits()用法及代码示例
- PHP ImagickDraw rotate()用法及代码示例
- PHP ImagickDraw getTextEncoding()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getFillColor() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。