imagefilltoborder
(PHP 4, PHP 5)
imagefilltoborder — 区域填充到指定颜色的边界为止
<h3>说明</h3>
bool <strong>imagefilltoborder</strong>
( resource <code>$image</code>
, int <code>$x</code>
, int <code>$y</code>
, int <code>$border</code>
, int <code>$color</code>
)
<p>
<strong>imagefilltoborder()</strong> 从
<code>x</code>,<code>y</code>(图像左上角为
0, 0)点开始用 <code>color</code>
颜色执行区域填充,直到碰到颜色为 <code>border</code>
的边界为止。【注:边界内的所有颜色都会被填充。如果指定的边界色和该点颜色相同,则没有填充。如果图像中没有该边界色,则整幅图像都会被填充。】
</p>