ImagickDraw::setStrokeLineJoin

パスの角を描画する際に使用する形状を指定する

説明

public bool ImagickDraw::setStrokeLineJoin(int $linejoin)
警告

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

パス (あるいはその他のベクター図形) の角を描画する際に使用する形状を指定します。

パラメータ

linejoin

LINEJOIN 定数 (imagick::LINEJOIN_*) のうちのいずれか

戻り値

値を返しません。

例1 ImagickDraw::setStrokeLineJoin の例

<?php
function setStrokeLineJoin($strokeColor, $fillColor, $backgroundColor) {

    $draw = new \ImagickDraw();
    $draw->setStrokeWidth(1);
    $draw->setStrokeColor($strokeColor);
    $draw->setFillColor($fillColor);

    $draw->setStrokeWidth(20);

    $offset = 220;

    $lineJoinStyle = [
        \Imagick::LINEJOIN_MITER,
        \Imagick::LINEJOIN_ROUND,
        \Imagick::LINEJOIN_BEVEL,
        ];

    for ($x = 0; $x < count($lineJoinStyle); $x++) {
        $draw->setStrokeLineJoin($lineJoinStyle[$x]);
        $points = [
            ['x' => 40 * 5, 'y' => 10 * 5 + $x * $offset],
            ['x' => 20 * 5, 'y' => 20 * 5 + $x * $offset],
            ['x' => 70 * 5, 'y' => 50 * 5 + $x * $offset],
            ['x' => 40 * 5, 'y' => 10 * 5 + $x * $offset],
        ];

        $draw->polyline($points);
    }

    $image = new \Imagick();
    $image->newImage(500, 700, $backgroundColor);
    $image->setImageFormat("png");

    $image->drawImage($draw);

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

?>