當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。