Java:图像加载器库(JPG、PNG、GIF、TIFF、TGA)
请告诉我一个可以加载 JPG、PNG、TIFF、TGA 等格式的图像加载器库。 如果它能告诉我一种像素格式,例如 R8G8B8、R5G6B5 等,那就太好了。
Advise me an image loader library which could load such formats as JPG, PNG, TIFF, TGA.
It would be great if It could say me a pixel formats, such as R8G8B8, R5G6B5,..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BufferedImage 是一种非常常用的图像。在此处查看文档 。如果您想要包含整个过程的内容,请查看 图像IO。使用
方法。
BufferedImage is a pretty common one that is used. Check out the docs here. If you want something that wraps the entire process, look at ImageIO. Use the
method.