imagefill
(PHP 3, PHP 4, PHP 5)
imagefill -- 塗り潰す
説明
bool
imagefill ( resource image, int x, int y, int color )
指定した座標 (左上が 0, 0 です) から、指定した色
color
で
image
を塗りつぶします。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例
例 1. imagefill() の例
<?php
$im = imagecreatetruecolor(100, 100);
// 背景色を赤に設定します $red = imagecolorallocate($im, 255, 0, 0); imagefill($im, 0, 0, $red);
header('Content-type: image/png'); imagepng($im); imagedestroy($im); ?>
|
上の例の出力は、たとえば
以下のようになります。 |