iOS Question Download transparent image from internet

ykucuk

Well-Known Member
Licensed User
Longtime User
Hi,

I download transparent png files from the internet and save to device. Unfortunately saved file is not transparent.
Any help?

B4X:
Dim out As OutputStream
out = File.OpenOutput(File.DirLibrary, "Caches/Bahoo/"&sFile , False)
j2.GetBitmap.WriteToStream(out, 100, "PNG")
out.Close
 
Top