本文介绍了保存图像:GDI +中发生一般性错误。 (vb.net)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要从一个OFD打开它后保存图像。这是我的code大气压:

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:\Users\Jonathan\Desktop\e\tmp.png", Imaging.ImageFormat.png)
Next

和上线 Image.FromFile(文件).Save(C:\用户\乔纳森\桌面\ê\ tmp.png,Imaging.ImageFormat.png)它出现的错误。

(注意:申请将建立在这样只是我的第一个code,这将需要保存不复制)

(note: the application will be built on so that's just my first code and it will need to be saved not copied)

推荐答案

我要检查两件事情:

  1. ,你保存到目录存在
  2. 你有写权限这个目录
  1. That the directory you're saving toexists
  2. That you have write permissions tothis directory

这篇关于保存图像:GDI +中发生一般性错误。 (vb.net)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 19:58