ImagickDraw::circle

(PECL imagick 2, PECL imagick 3)

ImagickDraw::circle円を描画する

説明

public ImagickDraw::circle(
    float $ox,
    float $oy,
    float $px,
    float $py
): bool
警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

画像上に円を描画します。

パラメータ

ox

原点の x 座標。

oy

原点の y 座標。

px

周囲の x 座標。

py

周囲の y 座標。

戻り値

値を返しません。

例1 ImagickDraw::circle() の例

<?php
function circle($strokeColor$fillColor$backgroundColor$originX$originY$endX$endY) {

    
//Create a ImagickDraw object to draw into.
    
$draw = new \ImagickDraw();

    
$strokeColor = new \ImagickPixel($strokeColor);
    
$fillColor = new \ImagickPixel($fillColor);

    
$draw->setStrokeOpacity(1);
    
$draw->setStrokeColor($strokeColor);
    
$draw->setFillColor($fillColor);

    
$draw->setStrokeWidth(2);
    
$draw->setFontSize(72);

    
$draw->circle($originX$originY$endX$endY);

    
$imagick = new \Imagick();
    
$imagick->newImage(500500$backgroundColor);
    
$imagick->setImageFormat("png");
    
$imagick->drawImage($draw);

    
header("Content-Type: image/png");
    echo 
$imagick->getImageBlob();
}

?>

関連キーワード:  描画, ImagickDraw, , 座標, float, oy, 原点, 周囲, imagick, ox