📜  PHP | imagickpixel __construct()函数

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

PHP | imagickpixel __construct()函数

ImagickPixel::__construct()函数是PHP中的一个内置函数,用于构造 ImagickPixel 对象。如果指定了颜色,则构造对象,然后使用该颜色进行初始化。

句法:

bool ImagickPixel::__construct( void )

参数:此函数接受单个参数$color ,它是可选的并且包含颜色。

返回值:此函数在成功时返回一个 ImagickPixel 对象。

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

下面的程序说明了PHP中的ImagickPixel::__construct()函数

方案一:

setColorValue(Imagick::COLOR_ALPHA, 0.6);
  
// Get the color
echo print_r($imagickPixel->getColorValue(Imagick::COLOR_ALPHA));
?>

输出:

0.61

方案二:

getColorAsString();
?>

输出:

srgb(65, 191, 99)

方案 3:

newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Set the color using imagickPixel
$draw->setFillColor($imagickPixel);
  
// Set the font size
$draw->setFontSize(80);
  
// Annotate a text
$draw->annotation(100, 150, 'GeeksforGeeks');
  
// 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/imagickpixel.construct。 PHP