imagefill

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

imagefill塗り潰す

説明

imagefill(
    GdImage $image,
    int $x,
    int $y,
    int $color
): bool

指定した座標 (左上が 0, 0 です) から、指定した色 colorimage を塗りつぶします。

パラメータ

image

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

x

開始位置の x 座標。

y

開始位置の y 座標。

color

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

戻り値

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

変更履歴

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

例1 imagefill() の例

<?php

$im 
imagecreatetruecolor(100100);

// 背景色を赤に設定します
$red imagecolorallocate($im25500);
imagefill($im00$red);

header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>

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

出力例 : imagefill()

参考

関連キーワード:  imagefill, GdImage, int, 座標, 作成, 開始, 画像, imagecolorallocate, 位置, バージョン