时间:2021-05-20
图片转换成字节流先要转换的IMage对象,转换之后返回字节流。字节流转换成图片,要转换的字节流,转换得到的Image对象,根据图片路径返回图片的字节流,感兴趣的朋友看下下面的代码。
C#将图片和字节流相互转换代码:
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Drawing;usingSystem.IO;namespaceMicrosoft.Form.Base{classImageToByte{/// <summary>/// 图片转换成字节流/// </summary>/// <param name="img">要转换的Image对象</param>/// <returns>转换后返回的字节流</returns>publicstaticbyte[] ImgToByt(Image img){MemoryStream ms = newMemoryStream();byte[] imagedata = null;img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);imagedata = ms.GetBuffer();returnimagedata;}/// <summary>/// 字节流转换成图片/// </summary>/// <param name="byt">要转换的字节流</param>/// <returns>转换得到的Image对象</returns>publicstaticImage BytToImg(byte[] byt){MemoryStream ms = newMemoryStream(byt);Image img = Image.FromStream(ms);returnimg;}///// <summary>/// 根据图片路径返回图片的字节流byte[]/// </summary>/// <param name="imagePath">图片路径</param>/// <returns>返回的字节流</returns>privatestaticbyte[] getImageByte(stringimagePath){FileStream files = newFileStream(imagePath, FileMode.Open);byte[] imgByte = newbyte[files.Length];files.Read(imgByte, 0, imgByte.Length);files.Close();returnimgByte;}}}将字节流转换为图片文件显示到页面上
//Byte[] result;System.IO.MemoryStream ms =new MemoryStream(result, 0, result.Length) Response.ClearContent(); Response.ContentType = "image/Gif"; Response.BinaryWrite(ms.ToArray());或者添加一个处理图片的Handler,内容如下:<%@ WebHandler Language="C#" Class="Handler" %>using System.Web;using System.IO;public class Handler : IHttpHandler { public void ProcessRequest (HttpContext context) { int CategoryID = int.Parse(context.Request.QueryString["CategoryID"]); //调用Categories.GetPicture取得图片stream Stream stream = CategoriesPicture.GetPicture(CategoryID); if (stream !=null) { //取得图片stream大小 int buffersize = (int)stream.Length; //建立buffer System.Byte[] buffer = new System.Byte[buffersize ] ; //调用stream.Read,从stream读取到buffer,并返回count int count = stream.Read(buffer, 0, buffersize); //返回图片字段buffer if (count!=0) context.Response.OutputStream.Write(buffer, 0, count); } } public bool IsReusable { get { return false; } }}以上就是本文的全部内容,希望对大家学习C#将图片和字节流互相转换并显示到页面上有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#文件和字节流的转换方法。分享给大家供大家参考。具体实现方法如下:1、读取文件,并转换为字节流FileStreamfs=newFileStrea
java文件输出流是一种用于处理原始二进制数据的字节流类。为了将数据写入到文件中,必须将数据转换为字节,并保存到文件。复制代码代码如下:packagecom.y
C#对于C++的dll引用时,经常会遇到类型转换和struct的转换1.C++里的Char类型是1个字节,c#里的Char是两个字节,不可以对应使用;可使用c#
一、用C#将Image转换成byte[]并插入数据库:1.1 将图片控件的Image转换成流:复制代码代码如下:privatebyte[]PicToArray(
用C#处理二进制文件用C#处理二进制文件的话,就会有另外两项新的挑战。第一项挑战是:所有的.NET语言都是强类型的。因此,你不得不从文件中的字节流转换为你所想要