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
相關用法
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw getTextAntialias()用法及代碼示例
- PHP ImagickDraw setTextUnderColor()用法及代碼示例
- PHP ImagickDraw setViewbox()用法及代碼示例
- PHP ImagickDraw skewY()用法及代碼示例
- PHP ImagickDraw setStrokeLineJoin()用法及代碼示例
- PHP ImagickDraw getStrokeLineJoin()用法及代碼示例
- PHP ImagickDraw getTextDecoration()用法及代碼示例
- PHP ImagickDraw getTextInterlineSpacing()用法及代碼示例
- PHP ImagickDraw getFillRule()用法及代碼示例
- PHP ImagickDraw clear()用法及代碼示例
- PHP ImagickDraw setStrokeLineCap()用法及代碼示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw getStrokeLineCap()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | ImagickDraw circle() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。