当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickPixel __construct()用法及代码示例


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

用法:

bool ImagickPixel::__construct( void )

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


返回值:成功时,此函数返回ImagickPixel对象。

异常:该函数在错误时引发ImagickException。

以下示例程序旨在说明PHP中的ImagickPixel::__construct()函数:

程序1:

<?php 
  
// Create a new imagick object using __construct 
// function without any arguments 
$imagickPixel = new ImagickPixel(); 
  
// Set the color 
$imagickPixel->setColorValue(Imagick::COLOR_ALPHA, 0.6); 
  
// Get the color 
echo print_r($imagickPixel->getColorValue(Imagick::COLOR_ALPHA)); 
?>

输出:

0.61

程序2:

<?php 
  
// Create a new imagick object using __construct 
// function with a color as argument 
$imagickPixel = new ImagickPixel('#41bf63'); 
  
// Get the color 
echo $imagickPixel->getColorAsString(); 
?>

输出:

srgb(65, 191, 99)

程序3:

<?php 
  
// Create a new imagick object using __construct 
// function with a color as argument 
$imagickPixel = new ImagickPixel('#62c730'); 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickPixel __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。