GD库创建图像步骤 <?php //1.创建画布 $width = 300; $height= 200; $image=imagecreatetruecolor($width,$height); //2.创建颜色 [RGB红绿蓝] $white=imagecolorallocate($image,255,255,255);//白色 $black=imagecolorallocate($image,0,0,0);//黑色 $red=imagecolorallocate($image,255,0,0…