在java中检测屏幕重绘区域
我正在创建一个小程序,它将执行屏幕共享之类的操作。为此,我使用 Robot 类来捕获屏幕区域。我想在第一个屏幕截图后捕获脏/重新绘制的区域。我认为 RepaintManager 管理器可以用于此目的。但我不知道如何使用它。我是一个新手,所以java代码会很有帮助。谢谢
I am creating an applet which will do something like screen sharing . For that I am using Robot class to capture screen area . I want to capture the dirty / repainted areas after first screen shot. I think RepaintManager manager can be used for that. but i dont know how can I use it. I am a novice so a java code will be helpfull. thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看这个自定义重绘管理器来检查是否重绘发生在 EDT 上,看看它如何覆盖 addDirtyRegion。
Check out this custom repaint manager for checking if repaints happen on the EDT to see how it overrides addDirtyRegion.