📜  PHP | GmagickDraw setfillcolor()函数

📅  最后修改于: 2022-05-13 01:56:36.263000             🧑  作者: Mango

PHP | GmagickDraw setfillcolor()函数

GmagickDraw::setfillcolor()函数是PHP中的一个内置函数,用于设置用于绘图的填充颜色。

句法:

GmagickDraw GmagickDraw::setfillcolor( mixed $color )

参数:此函数接受单个参数$color ,用于保存像素颜色的值。

返回值:此函数在成功时返回 GmagickDraw 对象。

异常:此函数在出错时抛出 GmagickDrawException。

使用图像:

下面给出的程序说明了PHP中的GmagickDraw::setfillcolor()函数

程序 1:填充颜色的矩形。

rectangle(5, 10, 660, 100);
  
// Set the fill color
$draw->setfillcolor('green');
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

程序 2:带有填充颜色的文本。

rectangle(-100, -1000, 800, 400);
  
// Set the fill color
$draw->setfontsize(90);
  
// Set the stroke color
$draw->setstrokecolor('red');
  
// Set the fill color for background rectangle and text
$draw->setfillcolor('blue');
  
// Create a rectangle
$draw->annotate(20, 110, 'GeeksforGeeks');
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagickdraw.setfillcolor。 PHP