PHP | imagickdraw getFillColor()函数
ImagickDraw::getFillColor()函数是PHP中的一个内置函数,用于获取用于绘制填充对象的填充颜色。
句法:
ImagickPixel ImagickDraw::getFillColor( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含填充颜色的 ImagickPixel 值。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFillColor()函数:
方案一:
getFillColor();
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>
输出:
srgb(0, 0, 0) // which is black the default color.
方案二:
setFillColor('purple');
// Get the Fill Color
$colorPixel = $draw->getFillColor();
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>
输出:
srgb(128, 0, 128)
方案 3:
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