求C# 如何把图片的路径保存到数据库中,并从数据库中读取路径转化为图片显示出来 求代码? 10
希望那位高手帮帮我,谢谢,希望发到我邮箱里873084157@qq.com求代码,希望能写上注释,刚开始学C#,这样能看得懂些,希望各位高手帮帮我了,谢谢。...
希望那位高手帮帮我,谢谢,希望发到我邮箱里873084157@qq.com
求代码,希望能写上注释,刚开始学C#,这样能看得懂些,希望各位高手帮帮我了,谢谢。 展开
求代码,希望能写上注释,刚开始学C#,这样能看得懂些,希望各位高手帮帮我了,谢谢。 展开
展开全部
本实例主要介绍如何将图片存入数据库。将图片存入数据库,首先要在数据库中建立一张表,将存储图片的字段类型设为Image类型,用FileStream类、BinaryReader把图片读成字节的形式,赋给一个字节数组,然后用ADO.SqlCommand对象的ExecuteNonQuery()方法来把数据保存到数据库中。主要代码如下:
代码如下:
private void button1_Click(object sender, EventArgs e)
{
openFileDialog1.Filter = "*jpg|*.JPG|*.GIF|*.GIF|*.BMP|*.BMP";
if(openFileDialog1.ShowDialog()==DialogResult.OK)
{ string fullpath =openFileDialog1.FileName;//文件路径
FileStream fs = new FileStream(fullpath, FileMode.Open);
byte[] imagebytes =new byte[fs.Length];
BinaryReader br = new BinaryReader(fs);
imagebytes = br.ReadBytes(Convert.ToInt32(fs.Length));
//打开数据库
SqlConnection con = new SqlConnection("server=(local);uid=sa;pwd=;database=db_05");
con.Open();
SqlCommand com = new SqlCommand("insert into tb_08 values(@ImageList)",con);
com.Parameters.Add("ImageList", SqlDbType.Image);
com.Parameters["ImageList"].Value = imagebytes;
com.ExecuteNonQuery();
con.Close();
}
}
本实例主要介绍如何从数据库中把图片读出来。实现本实例主要是利用SqlDataReader从数据库中把Image字段值读出来,赋给一个byte[]字节数组,然后使用MemoryStream类与Bitmap把图片读取出来。主要代码如下:
private void button1_Click(object sender, EventArgs e)
{
byte[] imagebytes = null;
//打开数据库
SqlConnection con = new SqlConnection("server=(local);uid=sa;pwd=;database=db_05");
con.Open();
SqlCommand com = new SqlCommand("select top 1* from tb_09", con);
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
imagebytes = (byte[])dr.GetValue(1);
}
dr.Close();
com.Clone();
con.Close();
MemoryStream ms = new MemoryStream(imagebytes);
Bitmap bmpt = new Bitmap(ms);
pictureBox1.Image = bmpt;
}
本实例主要介绍如何只允许输入指定图片格式。用OpenFileDialog控件打开图片文件,只要将OpenFileDialog控件的Filter属性指定为特定的图片格式即可。例如,打开.bmp文件的图片,主要代码如下:
this.openFileDialog1.Filter = "bmp文件(*.bmp)|*.bmp";
在用pictureBox控件输入图片时,要想统一图片大小,只需把控件的SizeMode属性值设为StretchImage即可,StretchImage值表示图像的大小将调整为控件的大小。这样,图片的大小就统一了。
代码如下:
private void button1_Click(object sender, EventArgs e)
{
openFileDialog1.Filter = "*jpg|*.JPG|*.GIF|*.GIF|*.BMP|*.BMP";
if(openFileDialog1.ShowDialog()==DialogResult.OK)
{ string fullpath =openFileDialog1.FileName;//文件路径
FileStream fs = new FileStream(fullpath, FileMode.Open);
byte[] imagebytes =new byte[fs.Length];
BinaryReader br = new BinaryReader(fs);
imagebytes = br.ReadBytes(Convert.ToInt32(fs.Length));
//打开数据库
SqlConnection con = new SqlConnection("server=(local);uid=sa;pwd=;database=db_05");
con.Open();
SqlCommand com = new SqlCommand("insert into tb_08 values(@ImageList)",con);
com.Parameters.Add("ImageList", SqlDbType.Image);
com.Parameters["ImageList"].Value = imagebytes;
com.ExecuteNonQuery();
con.Close();
}
}
本实例主要介绍如何从数据库中把图片读出来。实现本实例主要是利用SqlDataReader从数据库中把Image字段值读出来,赋给一个byte[]字节数组,然后使用MemoryStream类与Bitmap把图片读取出来。主要代码如下:
private void button1_Click(object sender, EventArgs e)
{
byte[] imagebytes = null;
//打开数据库
SqlConnection con = new SqlConnection("server=(local);uid=sa;pwd=;database=db_05");
con.Open();
SqlCommand com = new SqlCommand("select top 1* from tb_09", con);
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
imagebytes = (byte[])dr.GetValue(1);
}
dr.Close();
com.Clone();
con.Close();
MemoryStream ms = new MemoryStream(imagebytes);
Bitmap bmpt = new Bitmap(ms);
pictureBox1.Image = bmpt;
}
本实例主要介绍如何只允许输入指定图片格式。用OpenFileDialog控件打开图片文件,只要将OpenFileDialog控件的Filter属性指定为特定的图片格式即可。例如,打开.bmp文件的图片,主要代码如下:
this.openFileDialog1.Filter = "bmp文件(*.bmp)|*.bmp";
在用pictureBox控件输入图片时,要想统一图片大小,只需把控件的SizeMode属性值设为StretchImage即可,StretchImage值表示图像的大小将调整为控件的大小。这样,图片的大小就统一了。
展开全部
C#由函数可以获得文件的路径,如果要存到数据库中的话可以用varchar()类型的,如果要显示图片的话,C#也有图片控件,只要把图片路径取出来,付给控件就行了
追问
能写个函数代码给我吗,我刚学C#,好多不懂,谢谢!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string pth = FileUpload1.FileName;//获得文件名
pth = "tea/images" + System.DateTime.Now.Ticks + pth;//指定路径
string tid= DropDownList1.Text;//其它
string sql = " insert into production values('" + TextBox1.Text + "','" + TextBox2.Text + "','" + pth + "'," + Convert.ToInt32(TextBox3.Text) + ",'"+tid+"') ";
int i = DB.CZ(sql);//执行SQL语句
if (i > 0)
{
FileUpload1.SaveAs(Server.MapPath(pth));//上传到服务器
Response.Write("上传成功");
Response.Redirect("Pdele.aspx");
}
else
{
Response.Write("<alert>('图片上传失败')</alert>");
}
刚学asp.net时写的代码 懒得改了
pth = "tea/images" + System.DateTime.Now.Ticks + pth;//指定路径
string tid= DropDownList1.Text;//其它
string sql = " insert into production values('" + TextBox1.Text + "','" + TextBox2.Text + "','" + pth + "'," + Convert.ToInt32(TextBox3.Text) + ",'"+tid+"') ";
int i = DB.CZ(sql);//执行SQL语句
if (i > 0)
{
FileUpload1.SaveAs(Server.MapPath(pth));//上传到服务器
Response.Write("上传成功");
Response.Redirect("Pdele.aspx");
}
else
{
Response.Write("<alert>('图片上传失败')</alert>");
}
刚学asp.net时写的代码 懒得改了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一般都在数据库中存图片名称
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询