如何在 中显示 TGA 图像特加?
我有一个以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不支持。
我认为可能有 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.