Image-Imlib2 - How to create IE compatible transparent PNG's ?

Posted on Tue Feb 22 19:09:35 2005 by meista
How to create IE compatible transparent PNG's ?
Hello, im trying to create a image with a transparent background.
But i want it without Alpha Channel because IE does not like this..
If i disable the alpha channel i get a picture with a black background.
What i am doing wrong?

Mike
#----- Some Code ------
my $image = Image::Imlib2->load("$libdir/icons/transparent.png"); $image=$image->create_scaled_image($w,$h); $image->add_font_path("$libdir/fonts"); # ... #draw some text # ... $image->has_alpha(0); #save out $image->image_set_format("png"); $image->set_quality(75); $image->save("/tmp/$$"."out.png");
Direct Responses: 143 | Write a response