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
相關用法
- PHP GmagickPixel setcolor()用法及代碼示例
- PHP GmagickPixel getcolorvalue()用法及代碼示例
- PHP GmagickPixel setcolorvalue()用法及代碼示例
- PHP GmagickPixel getcolor()用法及代碼示例
- PHP GmagickPixel getcolorcount()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- p5.js box()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js min()用法及代碼示例
- p5.js max()用法及代碼示例
- PHP Ds\Map last()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | GmagickPixel __construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。