PHP | ImagickDraw resetVectorGraphics()函数
ImagickDraw::resetVectorGraphics()函数是PHP中的一个内置函数,用于重置矢量图形。矢量图形包含所有绘制命令。重置矢量图形将删除所有旧命令。此函数的另一个用途是当您想将所有填充颜色重置为默认颜色(即黑色)时,您可以使用此函数。
句法:
bool ImagickDraw::resetVectorGraphics( void )
参数:此函数不接受任何参数。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::resetVectorGraphics()函数:
方案一:
newImage(800, 250, 'cyan');
// Create a new imagickDraw object
$draw = new ImagickDraw();
// Annotate a text
$draw->annotation(400, 200, 'Hello');
// This will delete all the previous draw commands
$draw->resetVectorGraphics();
// Set the color to green
$draw->setFillColor('green');
// Draw a rectangle
$draw->rectangle(0, 0, 200, 900);
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
方案二:
newImage(800, 250, 'gray');
// Create a new imagickDraw object
$draw = new ImagickDraw();
// Set the color to green
$draw->setFillColor('white');
// Set the font size
$draw->setFontSize(40);
// Annotate a text
$draw->annotation(500, 100, 'GeeksforGeeks');
// Render the draw commands
$imagick->drawImage($draw);
// This will delete all the previous draw commands
// and will reset fill color to black color
$draw->resetVectorGraphics();
// Draw a circle
$draw->circle(300, 200, 300, 20);
// 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.resetvectorgraphics。 PHP