java - 小程序删除图像

发布于 2024-09-09 04:17:06 字数 110 浏览 5 评论 0原文

抱歉问了这么多问题,但相信我..我先尝试了谷歌。 :)

当您在 Applet 上的 Paint() 中使用 g.drawImage 时...有什么方法可以删除它吗?我的意思是删除绘制的图像。

Sorry asking so many questions but believe me.. I tried Google first. :)

When you use the g.drawImage in paint() on an Applet... is there a way you can remove it? What I mean is remove the image that was drawn.

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

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

发布评论

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

评论(3

心碎的声音 2024-09-16 04:17:07

没有真正直接的方法来清除图像,除非您使用屏幕外缓冲区并进行绘制。我假设您直接在屏幕上绘图。要清除图像,您可以向小程序添加一个新标志,并在您的 Paint() 方法中检查该标志。该标志指示是否应该绘制图像。例如,

 boolean shouldDrawImage = true;

 void paint(Graphics g) {
    if (shouldDrawImage) {
        g.drawImage(...);
    }
 }

要清除图像,请将标志设置为 false 并调用 repaint() 方法。

There's not really a direct way to clear the image, unless you are using an off screen buffer and painting that. I'm assuming you are drawing directly to the screen. To clear the image, you add a new flag to your applet, which you check in your paint() method. The flag indicates if the image should be drawn or not. E.g.

 boolean shouldDrawImage = true;

 void paint(Graphics g) {
    if (shouldDrawImage) {
        g.drawImage(...);
    }
 }

To clear the image, you then set the flag to false and invoke the repaint() method.

愿与i 2024-09-16 04:17:07
g.setColor( getBackground() );
g.fillRect(0, 0, getWidth(), getHeight());
g.setColor( getBackground() );
g.fillRect(0, 0, getWidth(), getHeight());
澜川若宁 2024-09-16 04:17:07
public void removeImage(Image img, int id, width w, height h);

此函数删除由 nameidheightwidth 指定的图像。

public void removeImage(Image img, int id, width w, height h);

This function removes the image specified by name, id, height and width.

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