显示图像的时间问题
我需要显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
img 标签只能处理 jpg、gif、bmp 和 png 文件。要显示 ie 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.
More variations here
大多数浏览器无法显示 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).
重复:在所有网络浏览器中显示 TIFF 图像。这是浏览器支持问题。
Repeat of: Display TIFF image in all web browser. It's browser support issue.