从OFD中打开图像后,我需要保存图像。
这是我的代码atm:

Dim ofd As New OpenFileDialog
ofd.Multiselect = True
ofd.ShowDialog()


For Each File In ofd.FileNames
   Image.FromFile(File).Save("C:\Users\Jonathan\Desktop\e\tmp.png", Imaging.ImageFormat.png)
Next

并在Image.FromFile(File).Save("C:\Users\Jonathan\Desktop\e\tmp.png", Imaging.ImageFormat.png)行上显示了错误。

(注意:该应用程序将在此基础上构建,这只是我的第一个代码,需要保存而不是复制)

最佳答案

我会检查两件事:

  • 你保存的目录
    存在
  • 你有写权限
    这个目录
  • 10-07 18:50