I need to save an image after opening it in from an OFD.
This is my code atm:
Dim ofd As New OpenFileDialog
ofd.Multiselect = True
ofd.ShowDialog()
For Each File In ofd.FileNames
Image.FromFile(File).Save("C:UsersJonathanDesktopemp.png", Imaging.ImageFormat.png)
Next
And on the line Image.FromFile(File).Save("C:UsersJonathanDesktopemp.png", Imaging.ImageFormat.png)
it comes up with the error.
(note: the application will be built on so that's just my first code and it will need to be saved not copied)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…