程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#實現圖片文件到數據流再到圖片文件的轉換

C#實現圖片文件到數據流再到圖片文件的轉換

編輯:關於C語言
//----引入必要的命名空間
using System.IO;
using System.Drawing.Imaging;

//----代碼部分----//

        private byte[] photo;//公用緩沖區
        public string SourFilePath;//源圖片文件路徑
        public string ObjFilePath;//目標圖片路徑

        public int FileToStream()//文件到流的轉換
        {
            Image img = new Bitmap(SourFilePath);
            MemoryStream stream = new MemoryStream();
            img.Save(stream, ImageFormat.Bmp);
            BinaryReader br = new BinaryReader(stream);
            photo = stream.ToArray();
            stream.Close();
            return 0;
        }

        public Image ShowPic()//根據流顯圖
        {
            byte[] bytes = photo;
            MemoryStream ms = new MemoryStream(bytes);
            ms.Position = 0;
            Image img = Image.FromStream(ms);
            ms.Close();
            return img;
        }

        public int StreamToFile()//反向轉換
        {
            byte[] bytes = photo;
            FileStream fs = new FileStream(ObjFilePath, FileMode.Create, FileAccess.Write);
            fs.Write(bytes, 0, bytes.Length);
            fs.Flush();
            fs.Close();
            return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved