ASP.NET中让图片以二进制的形式存储在数据库中

2018-06-22 06:33:19来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

    今早有个网友问到我这问题,以前我都是直接在数据库中存文件名的,还没有试过存储整张图片到数据库中,上网搜索了一下,自己又测试了一番,代码如下:
建立保存图片的表的SQL语句:

 

Sql代码  收藏代码
  1. USE [niunantest]  
  2. GO  
  3. /****** 对象:  Table [dbo].[picdata]    脚本日期: 03/30/2010 14:51:58 ******/  
  4. SET ANSI_NULLS ON  
  5. GO  
  6. SET QUOTED_IDENTIFIER ON  
  7. GO  
  8. CREATE TABLE [dbo].[picdata](  
  9.     [id] [int] IDENTITY(1,1) NOT NULL,  
  10.     [content] [image] NULL,  
  11.     [createdate] [datetime] NOT NULL CONSTRAINT [DF_picdata_createdate]  DEFAULT (getdate()),  
  12.  CONSTRAINT [PK_picdata] PRIMARY KEY CLUSTERED   
  13. (  
  14.     [id] ASC  
  15. )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]  
  16. ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]  

 

下面是保存图片到数据库中的代码片段:

 

C#代码  收藏代码
  1. int len = fu.PostedFile.ContentLength;  // 图片大小  
  2. byte[] pic = new byte[len];  // 创建一个字节数组,大小为图片的大小,数据库中就存储这个东西  
  3. fu.PostedFile.InputStream.Read(pic, 0, len); // 把上传控件中的文件用二进制读取存到pic字节数组中  
  4. //   插入图片到数据库中       
  5. SqlConnection connection = new  
  6. SqlConnection(@"server=.\sqlexpress;database=niunantest;uid=sa;pwd=123456");  
  7. try  
  8. {  
  9.     connection.Open();  
  10.     SqlCommand cmd = new SqlCommand("insert   into   picdata   "  
  11.     + "([content])   values   (@pic)", connection);  
  12.     cmd.Parameters.Add("@pic", pic);  
  13.     cmd.ExecuteNonQuery();  
  14.     Label1.Text = "图片插入数据库成功!";  
  15.   
  16.     Image1.ImageUrl = "getpic.ashx?t=" + DateTime.Now.Ticks;  // 显示刚刚插入数据库的图片  
  17. }  
  18. finally  
  19. {  
  20.     connection.Close();  
  21. }   

 

下面是从数据库中取出图片的代码片段:

 

C#代码  收藏代码
  1. MemoryStream stream = new MemoryStream();  
  2. SqlConnection connection = new  
  3. SqlConnection(@"server=.\sqlexpress;database=niunantest;uid=sa;pwd=123456");  
  4. try  
  5. {  
  6.     connection.Open();  
  7.     SqlCommand command = new  
  8.     SqlCommand("select top 1  [content]   from   picdata order by id desc", connection);  
  9.     byte[] image = (byte[])command.ExecuteScalar();  
  10.     stream.Write(image, 0, image.Length);  
  11.     Bitmap bitmap = new Bitmap(stream);  
  12.     context.Response.ContentType = "image/jpeg";  
  13.     bitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);  
  14. }  
  15. finally  
  16. {  
  17.     connection.Close();  
  18.     stream.Close();  
  19. }   

    其实也就是通过流把图片搞成字节数组再存到数据库中,然后再从数据库中读取字节数组出来,再通过字节数组创建流,再通过流把图像输出出来,发现你存到数据库中的是gif图像的话再取出来是可以把他转为jpg的图像的,因为在取出图像的时候我们设置他的ContentType是image/jpeg了。


源码下载:http://niunan.net/download/picsave2db.7z

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:委托 delegate, 继承

下一篇:此成员资格提供程序没有被配置为支持密码恢复。