<?php //创建画布,就是画画的位置 imagecreate() //为图像分配颜色 imagecolorallocate() 可以把颜色填充到区域中,不能直接填充画布? //区域填充 bool imagefill(resource image, intx, inty, int color); x,y为填充点 //生成图像 imagegif(resource image[,string,filename]) //释放内存 imagedestroy(resource image) /* 点 -…