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


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


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

用法:

GmagickPixel GmagickPixel::__construct( string $color )

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


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

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

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

程序1(无颜色参数):

<?php 
  
// Create a new GmagickPixel 
// object using __construct 
$gmagickPixel = new GmagickPixel(); 
  
// Get the color 
$color = $gmagickPixel->getcolor(); 
echo $color; 
?>

输出:

rgb(0, 0, 0)

程序2(带有颜色参数):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(); 
echo $color; 
?>

输出:

rgb(52428, 45232, 25186)

参考: https://www.php.net/manual/en/gmagickpixel.construct.php



相关用法


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