新手對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案例如下: