Android Question Multiple bitmap writestream issue

bluedude

Well-Known Member
Licensed User
Longtime User
Hi,

I'm writing a bitmap like this:

Dim out As OutputStream
out = File.OpenOutput(File.DirInternal ,"logo.png", False)
bmp.WriteToStream(out, 100, "PNG")
out.Close

and referring to it like this in local HTML:

"file://" & File.Combine(File.DirInternal ,"logo.png")

But for some reason when I re-write logo.png I always keeps showing the same bitmap even if I write another one to logo.png (overwrite).
 
Top