修改画布颜色
修改字体
imagefilledrectangle
imagepng
<?php
$image = imagecreatetruecolor(500, 500);
$white = imagecolorallocate($image, 255, 255, 255);
$randColor = imagecolorallocate($image, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
//填充绘制矩形
imagefilledrectangle($image, 0, 0, 500, 500, $white);
//windows->运行->fonts
imagettftext($image, 30, 0, 100, 100, $randColor, 'fonts/cour.ttf', 'This is king');
imagettftext($image, 40, 40, 200, 200, $randColor, 'fonts/courbi.ttf', 'Imooc');
header('content-type:image/png');
imagepng($image);
imagepng($image, 'images/1.png');
imagedestroy($image);
?>