如何在java中从图像中获取光栅?
我正在尝试将 gif 图像从 url 加载到 java.util.image.Raster 中,以便我可以操作它。 我能找到的加载和解压缩图像的唯一方法是 Toolkit.getImage,它返回 java.awt.Image。 我需要将其转换为栅格,以便我可以使用它。 建议?
I'm trying to load a gif image from a url into a java.util.image.Raster so I can manipulate it. The only method for loading and decompressing an image I could find was Toolkit.getImage, which returns a java.awt.Image. I need to turn that into a Raster so I can work with it. Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将图像加载到缓冲图像中,然后从中获取数据
Load your Image into a Buffered Image and then get the data from it
如果您只想在此图像上绘图,您可以从 BufferedImage 获取 Graphics2D 上下文。
if you just want to draw on this image, you can get a Graphics2D context, from your BufferedImage.