如何在 中显示 TGA 图像特加?

发布于 2024-11-08 13:10:04 字数 207 浏览 7 评论 0原文

我有一个以 Base64 编码的 TGA 图像

https://gist.github.com/984770

但它没有t 显示在浏览器上。

有没有办法在浏览器上显示 TGA 图像,或者不支持?我可以使用任何客户端技术来实现此目的吗?

I have a TGA image encoded in Base64

https://gist.github.com/984770

But it doesn't show on the browser.

Is there a way to show a TGA image on the browser or it is not supported? Is there any client side technology I could use to achieve this?

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

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

发布评论

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

评论(1

来世叙缘 2024-11-15 13:10:04

不支持

我认为可能有 Java 或 ActiveX 插件可以做到这一点,但它会很复杂、麻烦、支持不稳定,当然也无法处理 Base64 数据。

如果只是一些图像,请考虑手动将它们转换为 JPG、PNG 或 GIF,具体取决于它们包含的图像类型。

如果有很多图像并且您需要一个自动化解决方案,一个好方法是使用一个服务器端脚本,该脚本调用例如 ImageMagick,并从图像创建 JPG 缩略图。

例如,您可以使用 Ajax 轻松地将 base64 数据发送到脚本,接收返回的转换文件的名称,并创建一个指向它的 元素。

It's not supported.

I assume there probably are Java or ActiveX plugins that can do it, but it's going to be complicated, cumbersome, have spotty support, and of course won't work with base64 data.

If it's just a few images, consider converting them to JPG, PNG or GIF manually, depending on what type of image they contain.

If it's many images and you need an automated solution, a good way would be to employ a server-side script that calls e.g. ImageMagick, and creates a JPG thumbnail from the image.

You could easily send the base64 data to the script using Ajax for example, receive the name of the converted file in return, and create an <img> element pointing to it.

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