PHP imagefilltoborder 图像GD库函数
-
定义和用法
imagefilltoborder - 区域填充到指定颜色的边界为止 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
imagefilltoborder ( resource $image , int $x , int $y , int $border , int $color )
imagefilltoborder() 从 x,y(图像左上角为 0, 0)点开始用 color 颜色执行区域填充,直到碰到颜色为 border 的边界为止。【注:边界内的所有颜色都会被填充。如果指定的边界色和该点颜色相同,则没有填充。如果图像中没有该边界色,则整幅图像都会被填充。】 -
参数
参数 必需的 描述 image 是 由图象创建函数(例如imagecreatetruecolor())返回的图象资源。 x1 是 左上角x坐标 y1 是 左上角y坐标 border 是 边界 color 是 椭圆的颜色。颜色标识符由 imagecolorallocate() 创建。 -
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE。 -