imagefill($img, 0, 0, $red);请问一下,其中参数x, y,分别都是什么意思啊,为什么我更改之后显示的图形没有任何变化呢
2 回答
已采纳
風雨兼程
TA贡献10条经验 获得超26个赞
imagefill ( resource $image , int $x , int $y , int $color )
imagefill() 在 image 图像的坐标 x,y(图像左上角为 0, 0)处用 color 颜色执行区域填充(即与 x, y 点颜色相同且相邻的点都会被填充)
遇到不懂的函数查一查PHP手册就知道了
<?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); ?>
- 2 回答
- 0 关注
- 1770 浏览
添加回答
举报
0/150
提交
取消