gpt4 book ai didi

c# - 如何将图像文件保存在我的项目文件夹中?

转载 作者:行者123 更新时间:2023-11-30 18:52:28 27 4
gpt4 key购买 nike

在我的 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”文件夹中。

enter image description here

最佳答案

实际上 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();
}

关于c# - 如何将图像文件保存在我的项目文件夹中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21427657/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com