我在C#表单上显示了一个图像。当用户点击"保存图像"按钮弹出一个Visual Basic输入框。我正在尝试向表单添加功能,允许用户在通过visual basic输入框输入图像名称时保存图像。
首先,我添加了这段代码,
NSString *search = [searchBar.text stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
但是,当我运行程序并单击“保存”按钮时,它会出现以下异常:"未处理的类型' System.Runtime.InteropServices.ExternalException'发生在System.Drawing.dll"
中然后我对代码添加了一些更改,使其看起来像这样,
private void save_image(object sender, EventArgs e)
{
String picname;
picname = Interaction.InputBox("Please enter a name for your Image");
pictureBit.Save("C:\\"+picname+".Png");
MessageBox.Show(picname +" saved in Documents folder");
}
当我运行此代码时,它不再提供异常,但会将图像保存在我的c# - > bin-> debug文件夹中。我知道这可能不是理想的做法,但我如何设置它的路径,以便将图像保存在文档文件夹中。
答案 0 :(得分:1)
String path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
savefile.FileName = path + "\\" + picname + ".png";
显示对话框的其他工作示例:
SaveFileDialog savefile = new SaveFileDialog();
String path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
savefile.InitialDirectory = path;
savefile.FileName = "picname";
savefile.Filter = "PNG images|*.png";
savefile.Title = "Save as...";
savefile.OverwritePrompt = true;
if (savefile.ShowDialog() == DialogResult.OK)
{
Stream s = File.Open(savefile.FileName, FileMode.Create);
pictureBit.Save(s,ImageFormat.Png);
s.Close();
}
其他保存示例:
if (savefile.ShowDialog() == DialogResult.OK)
{
pictureBit.Save(savefile.FileName,ImageFormat.Png);
}
答案 1 :(得分:0)
您没有设置路径,请参阅MSDN了解详情。