<?php
//1、创建画布资源
$img=imagecreatetruecolor(300,200);
//2、准备颜色
$black=imagecolorallocate($img,0,0,0);
$while=imagecolorallocate($img,255,255,255);
$red = imagecolorallocate($img,255,0,0);
$green = imagecolorallocate($img,0,255,0);
$blue = imagecolorallocate($img,0,0,255);
//填充画布
imagefill($img,0,0,$black);
//3、在画布上画图像或文字
//4、输出最终图像或保存最终图像
header('content-type:image/jpeg');
imagejpeg($img,'./jin.jpg');
//5、释放画布资源
imagedestroy($img);
?>