ASP.NET中讓圖片以二進位的形式儲存在資料庫中

來源:互聯網
上載者:User

標籤:des   http   os   檔案   資料   io   for   art   

    今早有個網友問到我這問題,以前我都是直接在資料庫中存檔案名稱的,還沒有試過儲存整張圖片到資料庫中,上網搜尋了一下,自己又測試了一番,代碼如下:
建立儲存圖片的表的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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.