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).
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).