码迷,mamicode.com
首页 > 编程语言 > 详细

Java屏幕截图及剪切

时间:2014-09-13 01:55:44      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   java   ar   for   文件   

  Java标准API中有个Robot类,该类可以实现屏幕截图,模拟鼠标键盘操作这些功能。这里只展示其屏幕截图。

  截图的关键方法createScreenCapture(Rectangle rect) ,该方法需要一个Rectangle对象,Rectangle就是定义屏幕的一块矩形区域,构造Rectangle也相当容易:

new Rectangle(int x, int y, int width, int height),四个参数分别是矩形左上角x坐标,矩形左上角y坐标,矩形宽度,矩形高度。截图方法返回BufferedImage对象,示例代码:

 

 1     /**
 2      * 指定屏幕区域截图,返回截图的BufferedImage对象
 3      * @param x
 4      * @param y
 5      * @param width
 6      * @param height
 7      * @return 
 8      */
 9     public BufferedImage getScreenShot(int x, int y, int width, int height) {
10         BufferedImage bfImage = null;
11         try {
12             Robot robot = new Robot();
13             bfImage = robot.createScreenCapture(new Rectangle(x, y, width, height));
14         } catch (AWTException e) {
15             e.printStackTrace();
16         }
17         return bfImage;
18     }

 

 如果需要把截图保持为文件,使用ImageIO.write(RenderedImage im, String formatName, File output) ,示例代码:

 1     /**
 2      * 指定屏幕区域截图,保存到指定目录
 3      * @param x
 4      * @param y
 5      * @param width
 6      * @param height
 7      * @param savePath - 文件保存路径
 8      * @param fileName - 文件保存名称
 9      * @param format - 文件格式
10      */
11     public void screenShotAsFile(int x, int y, int width, int height, String savePath, String fileName, String format) {
12         try {
13             Robot robot = new Robot();
14             BufferedImage bfImage = robot.createScreenCapture(new Rectangle(x, y, width, height));
15             File path = new File(savePath);
16             File file = new File(path, fileName+ "." + format);
17             ImageIO.write(bfImage, format, file);
18         } catch (AWTException e) {
19             e.printStackTrace();    
20         } catch (IOException e) {
21             e.printStackTrace();
22         }
23     }

 

 

 

Java屏幕截图及剪切

标签:style   blog   color   io   使用   java   ar   for   文件   

原文地址:http://www.cnblogs.com/jebysun/p/3969356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!