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


PHP ImagickDraw color()用法及代碼示例


ImagickDraw::color()函數是PHP中的內置函數,用於從指定位置開始使用指定的繪製方法,使用當前的填充顏色在圖像上繪製顏色。

用法:

bool ImagickDraw::color( float $x, float $y, int $paintMethod )

參數:此函數接受上述和以下所述的三個參數:


  • $x:它指定繪畫的x坐標。
  • $y:它指定繪畫的y坐標。
  • $paintMethod:它指定一個與PAINT常量之一相對應的整數。 PAINT常量列表如下:
    • imagick::PAINT_POINT(1)
    • imagick::PAINT_REPLACE(2)
    • imagick::PAINT_FLOODFILL(3)
    • imagick::PAINT_FILLTOBORDER(4)
    • imagick::PAINT_RESET(5)

返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的ImagickDraw::color()函數:

程序1:

<?php 
  
//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(); 
   
$x = 0; 
while ($x < 900) { 
    // Draw lines using imagick::PAINT_POINT 
    $draw->color($x, 0, 1); 
    $draw->color($x, 30, 1); 
    $draw->color($x, 60, 1); 
    $draw->color($x, 90, 1); 
    $draw->color($x, 120, 1); 
    $draw->color($x, 150, 1); 
    $draw->color($x, 180, 1); 
    $draw->color($x, 210, 1); 
    $draw->color($x, 240, 1); 
    $x++; 
} 
   
//  Render the draw commands 
$imagick->drawImage($draw); 
   
// Show the output 
$imagick->setImageFormat("png"); 
header("Content-Type:image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

程序2:

<?php 
  
//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 fill color 
$draw->setFillColor('green'); 
  
// Color the image using Imagick::PAINTFILL 
$draw->color(1, 1, Imagick::PAINT_FLOODFILL); 
  
//  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/imagickdraw.color.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw color() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。