显示图像的时间问题

发布于 2024-11-15 13:36:28 字数 102 浏览 2 评论 0原文

我需要显示 direfentes 格式的图片,如 JPG、GIF、BMP、TIF、PNG、PCX,但我没有在 html 图像标签中显示 tif 和 pcx 格式的图像,有人知道我该怎么做吗?

I need to show pictures of direfentes formats such as JPG, GIF, BMP, TIF, PNG, PCX, but I'm not getting the images in tif and pcx formats appear in the html image tag, anyone know how I could do this?

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

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

发布评论

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

评论(3

携君以终年 2024-11-22 13:36:28

img 标签只能处理 jpg、gif、bmp 和 png 文件。要显示 ie tiff 文件,您可以使用嵌入标签。

<embed width=xxx height=xxx src="tiffdocument.tif" type="image/tiff">

此处有更多变体

The img tag can only handle jpg, gif, bmp and png files. To display i.e. a tiff file you can use the embed tag.

<embed width=xxx height=xxx src="tiffdocument.tif" type="image/tiff">

More variations here

心安伴我暖 2024-11-22 13:36:28

大多数浏览器无法显示 TIFF,而且没有浏览器可以使用标准 标签显示 PCX 图像。

解决方案是将图像转换为支持的格式,手动或自动(使用 php 或服务器端语言)。

Most browsers can't display TIFF and afaik no browser can display PCX images, using standard <img> tags.

A solution would be to convert the image to a supported format, either manually or automatically (using php or server-side language).

偏爱你一生 2024-11-22 13:36:28

重复:在所有网络浏览器中显示 TIFF 图像。这是浏览器支持问题。

Repeat of: Display TIFF image in all web browser. It's browser support issue.

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