在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
获取指定路径中的图片的二进制数据,在页面中输出 using System.IO; ///指定被输出图像的地址 string path=Server.MapPath("~/images/aa.jpg"); ///创建文件流,以读取图像 FileStream fs=new FileStream(path,FileMode.Open,FileAccess.Read); ///定义保存图像数据的二进制数组 byte[] Image=new byte[(int)fs.Length]; fs.Read(Image, 0, (int)fs.Length); Response.Binary(Image); ///设置页面的输出格式,【注意】:在此只能输出jpg图片 Response.ContentType="image/pjpeg"; Response.End(); |
请发表评论