新手對php影像產生函數imagecreatetruecolor()和imagecreate()又不解之處,首先來看看官方對這兩個函數的解釋:
resource imagecreatetruecolor ( int $x_size , int $y_size )
傳回一個影像標識符,代表了一幅大小為x_size 和y_size 的黑色影像。
resource imagecreate ( int $x_size , int $y_size )
傳回一個圖片標識符,代表了一幅大小為
兩者在改變背景顏色時有些差異:
imagecreatetruecolor需要用imagefill()來填滿顏色
imagecreate()需要用imagecolorAllocate()加上背景色
php案例如下:
php案例如下
:
複製程式碼
程式碼如下: $img = imagecreatetruecolor(100,100); //建立真彩圖片資源
$🎜>$ color = imagecolorAllocate($img,200,200,200); //分配一個灰色
imagefill($img,0,0,$color); // 從左上角開始填入灰色
header('content-type:image /jpeg'); //jpg格式
imagejpeg($img); //顯示灰色的方塊
?>
複製程式碼 程式碼如下: $img = imagecreate(100,100); imagecolorallocate($img,200,100,00,0); >header('content-type:image/jpeg'); imagejpeg($img); ?>