ehehehe why is it like this:
Dim img As Image = Image.FromFile("c:\funny.jpg")
img.Save("C:\funny.jpg")

this would give me an error. It works if I try to save it on some other file. It seems like you can't save the image on the same file that you load it from (well unless you clone the image, dispose it, and then try to save the cloned image. but thta's a lot of overhead/inefficient work)

any way to get around this?