转发自定义图片不显示
服务端返回的方式
Response.ContentType = “image/Png”;
MemoryStream s = new MemoryStream();
image.Save(s, System.Drawing.Imaging.ImageFormat.Png);
Response.BinaryWrite(s.ToArray());
图片地址:http://wxcs.busboss.cn/Test/ImageOut?text=测试文字
在开发工具转发能够显示
在客户端则是一直在加载
是小程序不支持这种方式返回的图片还是其他原因求解!!!