[轉]C#中圖片.BYTE[]和base64string的轉換
阿新 • • 發佈:2018-12-30
在C#中 圖片到byte[]再到base64string的轉換: Bitmap bmp = new Bitmap(filepath); MemoryStream ms = new MemoryStream(); bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Gif); byte[] arr = new byte[ms.Length]; ms.Position= 0; ms.Read(arr, 0, (int)ms.Length); ms.Close(); string pic = Convert.ToBase64String(arr); base64string到byte[]再到圖片的轉換: byte[] imageBytes = Convert.FromBase64String(pic); //讀入MemoryStream物件 MemoryStream memoryStream = newMemoryStream(imageBytes, 0, imageBytes.Length); memoryStream.Write(imageBytes, 0, imageBytes.Length); //轉成圖片 Image image = Image.FromStream(memoryStream); 現在的資料庫開發中:圖片的存放方式一般有CLOB:存放base64string BLOB:存放byte[] 一般推薦使用byte[]。因為圖片可以直接轉換為byte[]存放到資料庫中 若使用base64string 還需要從byte[]轉換成base64string 。更浪費效能。