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


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


ImagickDraw::point()函數是PHP的Imagick庫中的一個內置函數,用於繪製點。此函數使用指定坐標處的當前筆觸顏色和筆觸粗細。

用法:

bool ImagickDraw::point( $x, $y )

參數:該函數接受上述和以下描述的兩個參數:


  • $x:此參數用於保存x坐標的值。
  • $y:此參數用於保存y坐標的值。

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

以下示例程序旨在說明PHP中的ImagickDraw::point()函數:
程序:

<?php 
  
// Create an ImagickDraw object 
$draw = new \ImagickDraw(); 
  
// Set the filled color 
$draw->setFillColor('red'); 
  
// Use loop to draw 10000 points in given area 
for ($x = 0; $x < 10000; $x++) { 
    $draw->point(rand(0, 300), rand(0, 300)); 
} 
  
// Create an Imagick object 
$imagick = new \Imagick(); 
  
// Set the new image size 
$imagick->newImage(300, 300, 'white'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Function to draw the image 
$imagick->drawImage($draw); 
  
header("Content-Type: image/png"); 
  
// Display the output image 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: http://php.net/manual/en/imagickdraw.point.php



相關用法


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