在ASP.NET Web Application 中如何處理圖片 -有用

來源:互聯網
上載者:User
 

老規矩,直接分析代碼

首先是,建立一個表,欄位類型是image

通常情況下,你會發現沒有辦法存image ,因為長度是50,不能改。而一個image通常是1000多個

image資料類型的長度是16,我存入一張圖的時候圖最多就只能30K左右,大點的圖根本就不能存。我想改它的長度,但是不能改的。  
跑一下下面的語句:

  sp_tableoption   N'MyTable',   'text   in   row',   '1000'        只有執行過這一句Image類型的資料才起作用

其次,是將檔案轉化為位元據位元組數組

       將檔案轉為位元據
        public static  byte[] PictureFileToByte(string picFilePath)
        {
            FileStream fs = new FileStream(picFilePath, FileMode.Open, FileAccess.Read);
            byte[] bytePhoto = new byte[fs.Length];
            fs.Read(bytePhoto, 0, (int)fs.Length);
            fs.Close();
            return bytePhoto;
        }

 

於是圖片便存到資料庫中去了。

 

讀取

建立一個Image 控制項,   Image.ImageUrl=Image.aspx?ID=2002

2002是資料庫中存圖片的表的行ID,

Image.aspx 中

 protected void Page_Load(object sender, EventArgs e)
    {
        string guid = Request.QueryString["ID"];
        if (guid != null)
        {
            Response.ClearContent();
            Response.ContentType = "image/jpeg";
            byte[] data = Utility.Picture(guid); 讀出位元據位元組
           Response.BinaryWrite((byte[])data);
        }

    }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.