Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 MVC 将 tif 文件返回给用户。
public ActionResult GetImage(string imageLocation) { return base.File(imageLocation, "image/tiff"); }
但是,我目前正在使用 chrome 并且文件刚刚下载,我想知道有没有办法在浏览器上显示图像本身?我可以将它作为不同的图像类型流式传输吗?
有任何想法吗?
谢谢
浏览器中的 TIFF 是不确定的——对于 CMYK 更是如此。我建议转换为 JPG 或 PNG。
虽然,如果你真的想做,safari 只支持 TIFF !
此外,这可能会有所帮助。