imagefilledrectangle

(PHP 4, PHP 5, PHP 7, PHP 8)

imagefilledrectangle塗りつぶした矩形を描画する

説明

imagefilledrectangle(
    GdImage $image,
    int $x1,
    int $y1,
    int $x2,
    int $y2,
    int $color
): bool

color で塗りつぶした矩形を、 指定した image 上に作成します。 開始位置と終了位置を指定します。0, 0 が画像の左上角を表します。

パラメータ

image

imagecreatetruecolor()のような画像作成関数が返す GdImage オブジェクト。

x1

開始位置の x 座標。

y1

開始位置の y 座標。

x2

終了位置の x 座標。

y2

終了位置の y 座標。

color

塗りつぶし色。imagecolorallocate() で作成された色識別子。

戻り値

成功した場合に true を、失敗した場合に false を返します。

変更履歴

バージョン 説明
8.0.0 image は、 GdImage クラスのインスタンスを期待するようになりました。 これより前のバージョンでは、resource が期待されていました。

例1 imagefilledrectangle() の例

<?php
// 55x30 の画像を作成します
$im imagecreatetruecolor(5530);
$white imagecolorallocate($im255255255);

// 白の矩形を描画します
imagefilledrectangle($im445025$white);

// 画像を保存します
imagepng($im'./imagefilledrectangle.png');
imagedestroy($im);
?>

上の例の出力は、 たとえば以下のようになります。

出力例 : imagefilledrectangle()

関連キーワード:  矩形, 描画, 位置, int, 座標, imagefilledrectangle, 終了, 作成, 開始, GdImage