捕捉桌面图像
我想通过编码捕获桌面图像,最有可能是用Java?如何实现呢??
I want to capture a Desktop image through Coding most probably in Java?? How to achieved it ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想通过编码捕获桌面图像,最有可能是用Java?如何实现呢??
I want to capture a Desktop image through Coding most probably in Java?? How to achieved it ??
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
请参阅
java.awt.Robot
类。http://download .oracle.com/javase/6/docs/api/java/awt/Robot.html#createScreenCapture(java.awt.Rectangle)
获得对 BufferedImage 对象的引用后,您可以使用 ImageIO 类写入文件。
See the
java.awt.Robot
class.http://download.oracle.com/javase/6/docs/api/java/awt/Robot.html#createScreenCapture(java.awt.Rectangle)
Once you have a reference to the
BufferedImage
object, you can use theImageIO
class to write to a file.