为什么写了for循环后只显示一个矩形的图形?
for($i;$i<4;$i++){ $fontsize = 5; //字体大小 $fontcolor = imagecolorallocate($image,0,0,0);//字体颜色,黑色 $fontcontent = rand(0,9); //生成随机数字 //定义坐标 $x = ($i*100/4) + rand(5,10); $y = rand(5,10); imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);//画出字符串 }
将这个写了之后 ,只显示这样的