Paste_Image.png
http://php.net/manual/zh/book.image.php
imagecreatetruecolor
imagecolorallocate
imagechar
imagestring
header
imagejpeg
imagedestroy
//創(chuàng)建畫布
$width = 500;
$height = 300;
$image = imagecreatetruecolor($width, $height);
//創(chuàng)建顏色
$red = imagecolorallocate($image, 255, 0, 0);
$blue = imagecolorallocate($image, 0, 0, 255);
$white = imagecolorallocate($image, 255, 255, 255);
//開始繪畫
imagechar($image, 40, 50, 100, 'K', $red);
imagechar($image, 40, 100, 200, 'i', $blue);
imagestring($image, 40, 200, 150, 'imooc', $white);
//顯示圖片
header('content-type:image/jpeg');
imagejpeg($image);//imagegif() imagepng()
//銷毀資源
imagedestroy($image);
Paste_Image.png