BufferedImage 的 getGraphics() 中出现空指针异常?

发布于 2024-11-05 08:05:37 字数 405 浏览 0 评论 0原文

public void saveImage(String path){
    BufferedImage image = (BufferedImage) createImage(500, 500);
    Graphics gImage = image.getGraphics(); //<<<<<<<<--- exception
    paint(gImage);
    image = image.getSubimage(0,0,500,500);     
    try {
        ImageIO.write(image, "png", new File(path+".png"));
    }
    catch (Exception e){}
}

问题出在哪里??

public void saveImage(String path){
    BufferedImage image = (BufferedImage) createImage(500, 500);
    Graphics gImage = image.getGraphics(); //<<<<<<<<--- exception
    paint(gImage);
    image = image.getSubimage(0,0,500,500);     
    try {
        ImageIO.write(image, "png", new File(path+".png"));
    }
    catch (Exception e){}
}

Where is the problem ??

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

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

发布评论

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

评论(2

谎言月老 2024-11-12 08:05:37

显然,方法 createImage(int, int) 返回 null。原因在 文档

返回:
离屏可绘制图像,可用于双缓冲。
如果组件不可显示,则返回值可能为 null。这将
如果 GraphicsEnvironment.isHeadless() 返回 true,则总是会发生。

Apparently the method createImage(int, int) is returning null. The reason is explained in the documentation:

Returns:
an off-screen drawable image, which can be used for double buffering.
The return value may be null if the component is not displayable. This will
always happen if GraphicsEnvironment.isHeadless() returns true.

我三岁 2024-11-12 08:05:37

您的 NPE 可能不是来自 getGraphics,而是来自尝试取消引用 null image 变量。如果您的组件不可显示,createImage 将返回 null

Your NPE is probably not coming from getGraphics but from trying to dereference a null image variable. If your component is not displayable, createImage returns null.

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