0

在此处输入图像描述

这是我的线程的最终输出,它截取屏幕截图并将它们存储在向量中。
java.awt.Robot用于截取屏幕截图,这些截图基本上是屏幕的光栅,包含光标位置。作为一种解决方法,我使用MouseInfo类来获取PointerInfo然后获取Point. 然后在该点绘制图像。
如果录制区域设置为全屏分辨率,一切都很酷。但是,如果我更改记录区域,光标会被绘制在错误的位置。
这个黑色光标应该位于 Eclipse IDE 顶部的Play按钮上。然而它在错误的位置。

如何在正确的位置绘制它?

代码:

package demo;
import java.awt.*;
import java.awt.image.*;
import java.util.*;
import javax.swing.*;

public class ScreenCapturingThread extends Thread{
    public ScreenCapturingThread(Vector<BufferedImage> screenShots,
            int frameRate,
            Icon cursor,
            Rectangle recordingArea){
        this.screenShots = screenShots;
        this.frameRate = frameRate;
        this.cursor = cursor;
        this.recordingArea = recordingArea;

        try{
            bot = new Robot();
        }catch(Exception e){
            System.out.println(e);
        }
        calculateSleepTime();
    }
    @Override
    public void run(){
        while(keepCapturing == true){
            try{
                screenShots.insertElementAt(takeScreenShot(), 0);
                sleep(sleepTime);

                keepCapturing = false; //take only one shot

                System.out.println("here");
                JFrame frame = new JFrame("blah");
                frame.setVisible(true);
                JLabel label = new JLabel(new ImageIcon(screenShots.firstElement()));
                frame.setSize(recordingArea.width, recordingArea.height);
                frame.add(label);


            }catch(InterruptedException e){
                e.printStackTrace();
            }
        }
    }
    public BufferedImage takeScreenShot(){
        p = m.getPointerInfo();
        Point location = p.getLocation();
        image = bot.createScreenCapture(recordingArea);
        if(cursor!=null){
            Graphics g = image.getGraphics();
            g.drawImage(((ImageIcon)cursor).getImage(), location.x,location.y,null);
        }
        return image;
    }
    public void stopIt(){
        keepCapturing = false;
    }
    public void calculateSleepTime(){
        sleepTime = 1/frameRate;
    }

    public static void main(String[] args) {
        Vector<BufferedImage> bufferedImages = new Vector<>(100);
        int frameRate = 10;
        Icon cursor = (Icon) new ImageIcon("src/images/blackCursor.png");
        Rectangle r = new Rectangle(1280,800);
        r.x = 200;
        r.y = 200;
        ScreenCapturingThread sc = new ScreenCapturingThread(bufferedImages,frameRate,cursor,r);

        sc.start();
    }
    Vector<BufferedImage> screenShots;
    int frameRate;
    long sleepTime;
    boolean keepCapturing = true;
    Icon cursor;
    Rectangle recordingArea;
    Robot bot;
    MouseInfo m;
    PointerInfo p;
    BufferedImage image;
}  

如果光标超出记录范围,则不得绘制。我的意思是,你明白了吗?

全屏分辨率输出

在此处输入图像描述

4

2 回答 2

1

当然,您必须在相对位置绘制光标 - 而不是全局:

    p = m.getPointerInfo();
    Point location = p.getLocation();

为您提供屏幕上的鼠标位置(全局)。图像坐标中的鼠标位置(相对)将类似于:

    int x = (int) (p.x - recordingArea.getX()); //for int y similar
    if(x < 0 || y < 0 || y >= maxHeight || x >= maxWidth) { // don't draw cursor }
于 2012-12-23T21:22:07.320 回答
1

您仍然将指针绘制在与运行按钮相同的位置,因为您永远不会检查指针的位置是否在您的录制范围内。此外,您可能希望使用录制范围来缩放指针的位置。

例如,您可以通过执行以下操作来检查指针是从查看矩形向左还是向上(偏移变量基本上是您开始记录时距左侧和顶部的距离):

p = m.getPointerInfo();
Point location = p.getLocation();
image = bot.createScreenCapture(recordingArea);
//Check location here.
if( location.x < recordingArea.x + <<offset x variable>> || 
    location.y < recordingArea.y + <<offset y variable>>){
     //Code to change cursor position to outside of viewing rectangle here.
}
if(cursor!=null){
      Graphics g = image.getGraphics();
      g.drawImage(((ImageIcon)cursor).getImage(), location.x,location.y,null);
}
于 2012-12-23T21:33:13.247 回答