PHP | imagefilltoborder()函数
imagefilltoborder()函数是PHP中的一个内置函数,用于执行具有特定颜色的泛洪填充并添加具有边框颜色的边框。
句法:
bool imagefilltoborder( resource $image, int $x, int $y, int $border, int $color )
参数:此函数接受上述五个参数,如下所述:
- $image:它指定要处理的图像。
- $x:它指定开始的x坐标。
- $y:它指定开始的 y 坐标。
- $border:指定边框颜色。
- $color:它指定填充颜色。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
异常:此函数在出错时抛出异常。
下面给出的程序说明了PHP中的imagefilltoborder()函数:
程序 1(为图像添加填充颜色):
输出:
程序 2(为绘图添加填充颜色):
输出:
参考: https://www. PHP.net/manual/en/函数.imagefilltoborder。 PHP