将 Image 对象转换为 BufferedImage 对象

发布于 2024-08-16 07:14:56 字数 104 浏览 8 评论 0原文

给定一个 Image 对象,如何在不使用任何图形内容的情况下将其转换为 BufferedImage 对象?

谢谢。

(PS我正在使用Java ImageIO库)

Given an Image object, how do I turn that into a BufferedImage object without using any of the graphics stuff?

Thanks.

(P.S. I'm using Java ImageIO library)

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

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

发布评论

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

评论(1

够运 2024-08-23 07:14:56

正如这篇文章(提供了一个示例从图像创建 BufferedImage)指出:

Image 对象无法转换为 BufferedImage 对象。最接近的等效方法是创建一个缓冲图像,然后在缓冲图像上绘制图像。此示例定义了执行此操作的方法。

As this article (which provides an example of creating a BufferedImage from an Image) states:

An Image object cannot be converted to a BufferedImage object. The closest equivalent is to create a buffered image and then draw the image on the buffered image. This example defines a method that does this.

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