區域填充

imagefill

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

imagefill區域填充

說明

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

imagefill()image 影象的座標 xy(影象左上角為 0, 0)處用 color 顏色執行區域填充(即與 x, y 點顏色相同且相鄰的點都會被填充)。

示例 #1 imagefill() 例子

<?php

$im 
imagecreatetruecolor(100100);

// 將背景設為紅色
$red imagecolorallocate($im25500);
imagefill($im00$red);

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

參見 imagecolorallocate()

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *