imagefill 区域填充

发表日期:2021-07-01 08:55:59 | 来源: | | 浏览(864) 分类:GD 和图像处理 函数

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(100, 100);
// 将背景设为红色$red = imagecolorallocate($im, 255, 0, 0);
imagefill($im, 0, 0, $red);
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>

参见 imagecolorallocate()

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。