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


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


ImagickDraw::circle()函數是PHP的Imagick庫中的一個內置函數,用於繪製圓。

用法:

bool ImagickDraw::circle( $ox, $oy, $px, $py )

參數:該函數接受上述和以下所述的四個參數:


  • $ox:此參數采用原點x坐標的值。
  • $oy:此參數采用原點y坐標的值。
  • $px:此參數采用周長x坐標的值。
  • $py:此參數采用周長y坐標的值。

返回值:該函數不返回任何值。

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

程序:

<?php 
  
// require_once('vendor/autoload.php'); 
   
// Create an ImagickDraw object 
$draw = new \ImagickDraw(); 
  
// Create ImagickPixel object 
$strokeColor = new \ImagickPixel('Red'); 
$fillColor = new \ImagickPixel('Green'); 
  
// Set the color, opacity of image 
$draw->setStrokeOpacity(1); 
$draw->setStrokeColor('Red'); 
$draw->setFillColor('Green'); 
  
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
   
// Function to draw circle  
$draw->circle(250, 250, 100, 150); 
   
$imagick = new \Imagick(); 
$imagick->newImage(500, 500, 'White'); 
$imagick->setImageFormat("png"); 
$imagick->drawImage($draw); 
   
// Display the output image 
header("Content-Type:image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

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



相關用法


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