View Single Post
  #132  
Old 03-09-2006, 05:59 PM
 
wink wink is offline
 

Member
  
Join Date: Nov 2005
Posts: 12
 

Default

Hi TelaFirma,

Just purchased your mod, and it's great stuff, however, I am also having the problem with my transparent gifs having a black background.

I did a little research on GD and found this page which discusses how to create an image with a white background.

http://www.phpgd.com/articles.php?article=5

Apparently, when you use either the imagecreate() or imagecreatetruecolor() functions, it always starts you with a blank image with a BLACK background.

You can change the background color to white by starting with

Code:
imagefill($image,0,0,$white);

I don't know if that will solve the problem, you know way more about this stuff than me, but I just wanted to offer some help if I can.
__________________
- Micah

X-Cart v. 4.0.16 (heavily modified)
PHP v. 4.3.11
Reply With Quote