java - 小程序删除图像
抱歉问了这么多问题,但相信我..我先尝试了谷歌。 :)
当您在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有真正直接的方法来清除图像,除非您使用屏幕外缓冲区并进行绘制。我假设您直接在屏幕上绘图。要清除图像,您可以向小程序添加一个新标志,并在您的 Paint() 方法中检查该标志。该标志指示是否应该绘制图像。例如,
要清除图像,请将标志设置为
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.
To clear the image, you then set the flag to
false
and invoke therepaint()
method.此函数删除由
name
、id
、height
和width
指定的图像。This function removes the image specified by
name
,id
,height
andwidth
.