imagefill坐标参数问题

imagefill($img, 0, 0, $red);

请问一下,其中参数x, y,分别都是什么意思啊,为什么我更改之后显示的图形没有任何变化呢

Micah3666607
浏览 1771回答 2
2回答

風雨兼程

 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); ?>
打开App,查看更多内容
随时随地看视频慕课网APP