03-13-2008, 11:49 AM
|
#4 (permalink)
|
|
The Addict
Join Date: Nov 2007
Location: UK
Posts: 319
Thanks: 18
|
imagecreatetruecolor() returns an image identifier representing a black image of the specified size.
in order to change the background colour you can use the following script.
PHP Code:
$bg = imagecolorallocate($im, 233, 14, 91);
Place right after the imagecreatetruecolor()
|
|
|