在没有 AWT 的情况下用 Java 加载图像
我在嵌入式平台上,无法访问 AWT。我想知道是否有人知道一个独立的库可以在没有任何 AWT 参与的情况下加载图像。
谢谢, 布雷登·麦克道曼
I am on an embedded platform without access to AWT. I was wondering if anyone knew of a standalone library to load images without any AWT involvement.
Thanks,
Braden McDorman
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看吉米。
http://java.sun.com/products/jimi/
易于使用,被 Sun 收购,被 JAI 取代,JAI 不太容易使用。
(现在该页面是 Oracle 品牌的......)
Have a look at JIMI.
http://java.sun.com/products/jimi/
Easy to work with, bought by Sun, superceeded by JAI which is not as easy to work with.
(And now the page is Oracle-branded...)
不是独立的库,不确定您的平台提供什么,但您可以尝试 javax.imageio.ImageIO(Java SE 1.4 及更高版本)。
只需使用
read
方法之一即可获取BufferedImage
。Not a standalone library and not sure what your platform offers, but you can try the javax.imageio.ImageIO (Java SE 1.4 and later).
Just use one of the
read
methods to get aBufferedImage
.也许 AWT 无头模式可以提供帮助?
http://java.sun.com/developer/technicalArticles/J2SE/Desktop /无头/
Perhaps AWT headless mode can help?
http://java.sun.com/developer/technicalArticles/J2SE/Desktop/headless/
我采取了半简单的方法,创建了一个将图像转换为 RGB565 原始文件的工具。然后我有一个自定义加载程序。
I took the semi-easy way out and created a tool to convert images to RGB565 raw files. Then I have a custom loader.