📜  PHP | GmagickPixel setcolor()函数

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

PHP | GmagickPixel setcolor()函数

GmagickPixel::setcolor()函数是PHP中的一个内置函数,用于设置 GmagickPixel 对象的颜色。

句法:

GmagickPixel GmagickPixel::setcolor( string $color )

参数:此函数接受一个保存颜色的参数$ color。

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

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

下面给出的程序说明了PHP中的GmagickPixel::setcolor()函数
方案一:

setColor('#428554'); 
  
// Get the color 
$color = $gmagickPixel->getColor(); 
print("
".print_r($color, true)."
");  ?> 

输出:

rgb(16962, 34181, 21588)

方案二:

setcolor('blue');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Set fill color using gmagickpixel
$draw->setfillcolor($gmagickPixel);
  
// Set the font size
$draw->setfontsize(40);
   
// Annotate a text
$draw->annotate(50, 180, '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/gmagickpixel.setcolor。 PHP