C# 实现Winform的图片上传,用到控件openFileDialog

C# 实现Winform的图片上传,用到控件openFileDialog
将上传的图片存到项目的Image文件夹下,同时还要获得图片的虚拟路劲,用来存到数据库。

string src="";
if(openFileDialog.showDialog==DialogResult.OK)
{
src=openFileDialog.filename.toString();
image.save("图片名",src);

}
具体放哪你看着办吧!
温馨提示:内容为网友见解,仅供参考
第1个回答  2009-08-21
OpenFileDialog op = new OpenFileDialog();
if (op.ShowDialog() == DialogResult.OK)
{
FileInfo fi = new FileInfo(op.FileName);
if (fi.Exists)
fi.CopyTo(@"C:绝对路径\Images\"+op.SafeFileName);
}
第2个回答  2009-08-21
先用openFileDialog 选择图片
file.copy(源文件名,你项目的路径及文件名)
再用图片控件加载图片

C# 实现Winform的图片上传,用到控件openFileDialog
if(openFileDialog.showDialog==DialogResult.OK){ src=openFileDialog.filename.toString();image.save("图片名",src);} 具体放哪你看着办吧!

怎么在c#_winform实现图片上传功能,求源代码,有图更好,高分啊
将一张图片上传到指定的文件夹,然后在窗体上的PictrueBox控件中显示出来,效果看图 代码如下:private void btnUpload_Click(object sender, EventArgs e){ \/\/创建一个对话框对象 OpenFileDialog ofd = new OpenFileDialog();\/\/为对话框设置标题 ofd.Title = "请选择上传的图片";\/\/设置筛选的图片格式...

c#winform如何打开图像文件
在C# WinForms中,您可以使用OpenFileDialog类来打开图像文件。以下是一个简单的示例,展示了如何使用OpenFileDialog来打开图像文件并在WinForms应用程序中显示它:首先,确保您的WinForms项目中已经添加了必要的引用。通常,您需要添加System.Windows.Forms的引用。在您的WinForms窗体中,放置一个PictureBox控件...

在C#中,如何实现上传图像的功能……
cmd.ExecuteNonQuery();cn.Close();MessageBox.Show("图片插入成功!");} } } private void button3_Click(object sender, EventArgs e){ using (OpenFileDialog ofd = new OpenFileDialog()){ ofd.Title = "请选择要插入的图片";ofd.Filter = "Gif图片|*.gif|Jpg图片|*.jpg|BMP图片|*.b...

C#中,关于用openFileDialog控件上传图片的问题
1、 OpenFileDialog控件有以下基本属性 InitialDirectory 对话框的初始目录 Filter 要在对话框中显示的文件筛选器,例如,"文本文件(*.txt)|*.txt|所有文件(*.*)||*.*"FilterIndex 在对话框中选择的文件筛选器的索引,如果选第一项就设为1 RestoreDirectory 控制对话框在关闭之前是否恢复当前目录 File...

c#messagebox添加图片
1、拖拽上传图片。2、后台代码中修改窗体属性,添加AllowDrop=true。3、给窗体添加拖拽事件,在事件列表找到拖拽,双击即可。4、点击按钮上传图片。5、在窗体中添加控件OpenFileDialog,提供了提示用户打开文件的功能。6、上传图片并保存。

C#WinForm中,用于将图片以二进制存入sql数据库中,并将图片从数据库中...
conn.Open(); SqllCommand cmdInsert = new SqlCommand();cmdInsert.Connection = conn;cmdInsert.CommandText =插入语句; cmdInsert.Parameters.Add("@照片", SqlDbType.Image); if (txtFilePath == ""){ cmdInsert.Parameters["@照片"].Value = DBNull.Value;} else { cmdInsert...

...的picture控件中导入一个图片,用openfiledialog
选中picture控件,在右下方的属性栏里找到image这个属性,然后单击那个小方框,就会弹出一个对话框,选择你要的图片,导入就行了。

用C#WinForm应用程序怎样把图片插入到Access数据库中?谢谢大侠们_百度...
OpenFileDialog();if (openFileDialog1.ShowDialog() == DialogResult.OK){ \/\/根据打开的图像文件创建原始图像大小的Bitmap对象 Bitmap image = new Bitmap(openFileDialog1.FileName);\/\/按比例缩放显示(因为Picture的SizeMode属性为Zoom),但原始图像大小未变 pictureBoxPhoto.Image = image;} } ...

c# winfrom 如何控制上传图片的大小
判断上传文件的大小(字节)即可,超过规定值就用程序压缩或以提示形式让用户重新选择图片 如果是解像度的话,上传时先判断图片大小,超过就缩放到指定大小再录入数据库,没超过就录入即可。判断解像度 private void button1_Click(object sender, EventArgs e){ OpenFileDialog ofd = new OpenFileDialog()...

相似回答