在 IE 中打开 tiff 图像
是否可以在 IE 中打开 Tiff 图像,就像在 IE 中打开 BMP 一样。 当我尝试将 iframe 源指定为 tiff 图像时,它会弹出一个保存对话框。我想在 IE 页面内显示 tiff 图像。
以下是我正在尝试的示例
<iframe src='C:\Users\XYZ\Desktop\Untitled.tif'; id ='hello'></iframe>
Is it possible to open Tiff images in IE, just like BMP opens in IE.
When i try to assign an iframe source as a tiff image it pops up a save dialog. i want to display tiff image inside an IE page.
Following is a sample which i was trying
<iframe src='C:\Users\XYZ\Desktop\Untitled.tif'; id ='hello'></iframe>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
IE 本身不支持 TIFF 图像。您有三个选择:
使用浏览器插件,例如:http://www.alternatiff.com/
在呈现给浏览器之前即时转换图像。
批量将图像转换为其他格式。
首选解决方案将取决于您的情况。
IE does not natively support TIFF images. You have three options:
Use a browser plugin such as: http://www.alternatiff.com/
Convert the image on the fly before presenting to the browser.
Batch convert the images to another format.
The preferred solution will depend on your situation.
Internet Explorer 本身不支持 TIFF 图像。您需要一个插件才能使其工作。检查 http://www.alternatiff.com/
Internet Explorer doesn't support TIFF images natively. You need a plugin for this to work. Check http://www.alternatiff.com/
尝试使用经典的“小程序”...
Try the classic "applet" instead...