在线文档教程
PHP
图像 | Image

imagefill

imagefill

(PHP 4, PHP 5, PHP 7)

imagefill - 倾倒填充

描述倾倒

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

进行倾倒填充开始在给定的坐标(左上为0,0)与给定colorimage

参数

`image`

一个图像资源,由图像创建函数之一返回,如imagecreatetruecolor()。

x

起点的x坐标。

y

起点的y坐标。

color

填充颜​​色。使用imagecolorallocate()创建的颜色标识符。

返回值

返回TRUE成功或失败时返回FALSE

例子

Example #1 imagefill() example

<?php $im = imagecreatetruecolor(100, 100 // sets background to red $red = imagecolorallocate($im, 255, 0, 0 imagefill($im, 0, 0, $red header('Content-type: image/png' imagepng($im imagedestroy($im ?>

上面的例子会输出类似于:

← imageellipse

imagefilledarc →