在浏览器中显示 tiff 图像的问题

发布于 2024-09-07 23:07:34 字数 100 浏览 5 评论 0原文

我在显示 tiff 图像时遇到问题。我的html代码如下:

< img src="tiffdocument.tif" />

I am facing problem in showing tiff images. My html code is below:

< img src="tiffdocument.tif" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤单情人 2024-09-14 23:07:34

TIFF 不是“网络友好”格式。您唯一可以可靠使用的格式是 GIF、PNG 和 JPEG。

TIFF is not a "web friendly" format. The only formats you can use reliably are GIF, PNG and JPEG.

梦醒时光 2024-09-14 23:07:34

您能看到其他图像,例如 .png、.gif、.jpeg 等吗?

你的图片路径正确吗?

<tagname 之间不能有

< img src="tiffdocument.tif" />

空格

<img src="tiffdocument.tif" />

Will you able to see other images such as .png, .gif, .jpeg etc ?

Is your image path is correct ?

there must not be space between < and tagname

< img src="tiffdocument.tif" />

should be

<img src="tiffdocument.tif" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文