通过动态页面中转,我在你的最新类似的帖子中略详细的回答了下,请查收:)
其实就是让 html 的 img 标签属性 src 有个归属,src 的源就是一个独立的网络请求流。
.aspx 或 .ashx 等中转一下就好了。
using (FileStream stream = new FileStream("图片路径")
{
byte[] bytes = new byte[stream.Length];
stream.Read(bytes, 0, stream.Length);
//bytes就是字节数组了
}
Code