C# 把byte[]输出为图片文件

        /// 
        /// 将byte[]输出为图片
        /// 
        /// 输出图片的路径及名称
        /// byte[]数组存放的图片数据
        public void Write(string path,byte[] picByte)
        {
            FileStream fs = new FileStream(path, FileMode.Create);
            BinaryWriter bw = new BinaryWriter(fs);
            //开始写入
            bw.Write(picByte, 0, picByte.Length);
            //关闭流
            bw.Close();
            fs.Close();
        }

调用:

string path = @"F:\testpic.jpg";

Write(path,picByte);

你可能感兴趣的:(C#)