在我的Windows应用程序中,我有一个PictureBox
和一个Button
控件。我想从按钮的OnClick
事件中加载用户的图像文件,并将该图像文件保存在我项目中的文件夹名称“proImg”中。然后我想在PictureBox
。
我已编写此代码,但它无效:
OpenFileDialog opFile = new OpenFileDialog();
opFile.Title = "Select a Image";
opFile.Filter = "jpg files (*.jpg)|*.jpg|All files (*.*)|*.*";
if (opFile.ShowDialog() == DialogResult.OK)
{
try
{
string iName = opFile.FileName;
string filepath = "~/images/" + opFile.FileName;
File.Copy(iName,Path.Combine("~\\ProImages\\", Path.GetFileName(iName)));
picProduct.Image = new Bitmap(opFile.OpenFile());
}
catch (Exception exp)
{
MessageBox.Show("Unable to open file " + exp.Message);
}
}
else
{
opFile.Dispose();
}
无法将图像保存在“proImg”文件夹中。
答案 0 :(得分:9)
实际上string iName = opFile.FileName;
没有给你完整的路径。您必须使用SafeFileName
代替。我假设您希望文件夹位于exe
目录中。请参考我的修改:
OpenFileDialog opFile = new OpenFileDialog();
opFile.Title = "Select a Image";
opFile.Filter = "jpg files (*.jpg)|*.jpg|All files (*.*)|*.*";
string appPath = Path.GetDirectoryName(Application.ExecutablePath) + @"\ProImages\"; // <---
if (Directory.Exists(appPath) == false) // <---
{ // <---
Directory.CreateDirectory(appPath); // <---
} // <---
if (opFile.ShowDialog() == DialogResult.OK)
{
try
{
string iName = opFile.SafeFileName; // <---
string filepath = opFile.FileName; // <---
File.Copy(filepath, appPath + iName); // <---
picProduct.Image = new Bitmap(opFile.OpenFile());
}
catch (Exception exp)
{
MessageBox.Show("Unable to open file " + exp.Message);
}
}
else
{
opFile.Dispose();
}
答案 1 :(得分:6)
您应该为File.Copy
方法提供正确的目标路径。 “〜\ ProImages ......”不是正确的道路。此示例将选定的图片复制到项目的bin文件夹中的ProImages文件夹:
string iName = opFile.FileName;
File.Copy(iName, Path.Combine(@"ProImages\", Path.GetFileName(iName)));
该路径是相对于当前可执行文件的位置,除了您提供完整路径(即@“D:\ ProImages”)。
如果您没有手动创建文件夹,并希望程序生成ProImages
文件夹(如果它尚不存在):
string iName = opFile.FileName;
string folder = @"ProImages\";
var path = Path.Combine(folder, Path.GetFileName(iName))
if (!Directory.Exists(folder))
{
Directory.CreateDirectory(folder);
}
File.Copy(iName, path);
PS:请注意使用verbatim(@
)自动转义字符串中的反斜杠(\
)字符。通常的做法是在声明表示路径的字符串时使用逐字。
答案 2 :(得分:2)
尝试使用picturebox.Image.Save函数。在我的程序中,它正在工作 PictureBox.Image.Save(您的目录,ImageFormat.Jpeg)
示例 pictureBox2.Image.Save(@“D:/ CameraImge /”+ foldername +“/”+ numbering +“.jpg”,ImageFormat.Jpeg);
答案 3 :(得分:1)
你写这样的代码。
string appPath = Path.GetDirectoryName(Application.ExecutablePath) +foldername ;
pictureBox1.Image.Save(appPath + @"\" + filename + ".jpg", ImageFormat.Jpeg);