imagecreatetruecolor()返回一個圖像標識符代表指定大小的黑色形象。
根據你的php教程和gd版本中函數定義與否。對於php 4.0.6通過4.1.x這個函數總是存在的
,
*/
$im=imagecreatetruecolor(100,100); //創建圖像
$string='n'; //定義字符
$white=imagecolorallocate($im,255,255,255); //定義白色
$black=imagecolorallocate($im,0,0,0); //定義黑色
$red=imagecolorallocate($im,255,0,0); //定義紅色
//在白色的背景上輸出一個黑色的"z",其實是顛倒的n
imagecharup($im,6,20,20,$string,$white);
imagechar($im,2,40,40,"r",$red); //使用紅色畫出字符
header('content-type: image/png'); //輸出頭部信息
imagepng($im); //輸出png文件
imagedestroy($im); //銷毀圖像
//
$img=imagecreatetruecolor(400,400); //創建圖像
$white=imagecolorallocate($img,255,255,255); //定義白色
$black=imagecolorallocate($img,0,0,0); //定義黑色
imagearc($img,200,200,350,350,0,360,$white); //畫橢圓弧
header("content-type: image/png"); //輸出頭信息
imagepng($img); //輸出為png圖像
imagedestroy($img); //銷毀圖像
//
$size=300;
$image=imagecreatetruecolor($size,$size);
//用白色背景加黑色邊框畫個方框
$back=imagecolorallocate($image,255,255,255);
$border=imagecolorallocate($image,0,0,0);
imagefilledrectangle($image,0,0,$size-1,$size-1,$back);
imagerectangle($image,0,0,$size-1,$size-1,$border);
$yellow_x=100;
$yellow_y=75;
$red_x=120;
$red_y=165;
$blue_x=187;
$blue_y=125;
$radius=150;
//用alpha值分配一些顏色
$yellow=imagecolorallocatealpha($image,255,255,0,75);
$red=imagecolorallocatealpha($image,255,0,0,75);
$blue=imagecolorallocatealpha($image,0,0,255,75);
//畫三個交迭的圓
imagefilledellips教程e($image,$yellow_x,$yellow_y,$radius,$radius,$yellow);
imagefilledellipse($image,$red_x,$red_y,$radius,$radius,$red);
imagefilledellipse($image,$blue_x,$blue_y,$radius,$radius,$blue);
//輸出header文件頭
header('content-type: image/png');
//最後輸出結果
imagepng($image);
imagedestroy($image);
//
$im=imagecreate(100,100); //創建圖像
$string='php'; //定義字符串
$bg=imagecolorallocate($im,255,255,255); //定義白色
$black=imagecolorallocate($im,0,0,0); //定義黑色
//在左上角輸出指定字符
imagechar($im,1,0,0,$string,$black);
header('content-type: image/png'); //輸出頭部信息
imagepng($im); //輸出png文件
imagedestroy($im); //銷毀圖像
?>