我有一个用asp.net管理的网站。我想在我的某个网页中显示图像,但该图像无法在Internet Explorer中查看,但其他浏览器可以显示该图像,但路径正确。
<asp:Image ID="PageImage" runat="server" ImageUrl ="~/images/PageImage.png" />
任何机构都可以帮助解决这个问题吗?
答案 0 :(得分:0)
创建图片时,请确保didn't use
CMYK
色彩空间,
其中IE can't handle
。 Saving
颜色空间中的RGB
应该fix the problem
(例如,在Adobe Photoshop中,使用“保存为网络...”选项)。
修改:
我尝试了resaving
image in GIMP
,indeed works now in IE for me
。
在此处了解详情link