Hi,
i have a png file which must be converted to a gif file. There is a transparent part in it, and when i save it the transparent part is black in stead of transparent. here's my code:
FileStream imgStream = new FileStream(outputFile, FileMode.Create, FileAccess.Write);
Image.FromFile(imageInput).Save(imgStream, ImageFormat.Gif);
here, imageinput is the fullpath to my png, and output file is the filefullpath with .gif extension.
can you see what is wrong here?
michel