在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
图片流下载 string filePath = HttpContext.Current.Server.MapPath("/img/wxPic/"); if (!Directory.Exists(filePath)) { Directory.CreateDirectory(filePath); } string fileName = string.Empty; string time = System.Guid.NewGuid().ToString(); fileName = time + ".jpg"; WebClient wc = new WebClient(); wc.DownloadFile(picUrl, filePath + fileName);
图片流输出 1 FileStream fs = new FileStream(Server.MapPath(imgLocalPath), FileMode.Open);//将图片文件存在文件流中 2 long fsLength = fs.Length;//流长度 3 byte[] b = new byte[(int)fsLength];//定义二进制数组 4 fs.Read(b, 0, (int)fsLength);//将流中字节写入二进制数组中 5 fs.Close();//关闭流 6 Response.ContentType = "image/jpg";//没有这个会出现乱码 7 Response.BinaryWrite(b);//将图片输出在页面
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论