imagecreatetruecolor()創建一個真彩色圖像後,
並不會自動把imagecolorallocate()方法注冊的第一個顏色作為背景色,而必須用imagefill()去填充
//設置顏色
$bg = imagecolorallocate($im, 240, 240, 0);//設置背景顏色
imagefill($im,0,0,$bg);//載入背景顏色
$te = imagecolorallocate($im, 0, 0, 0);//字符串顏色
//將字符串加到圖片上
imagestring($im,rand(3,6),rand(5,60),rand(5,15),$rand,$te);
//輸出圖片
header("Content-type: image/jpeg");
imagejpeg($im);imagecreatetruecolor()返回一個圖像標識符代表指定大小的黑色形象。
根據你的PHP和GD版本中函數定義與否。對於PHP 4.0.6通過4.1.x這個函數總是存在的
更多詳細內容請查看:php教程er/24/php-imagecreatetruecolor.htm">http://www.bKjia.c0m/phper/24/php-imagecreatetruecolor.htm