0

我有一个程序可以在按下 JButton 时截取屏幕截图,但由于某种原因,它不会显示在我的 JFrame 中。我知道该方法有效,因为 JFrame 像我告诉它的那样重新调整大小,但由于某种原因它不会显示镜头。

代码

public class main implements ActionListener{
public static Font f = new Font(Font.DIALOG, Font.BOLD, 25);
static JButton button = new JButton("Press For A Screen Shot!");
static JFrame frame = new JFrame("Snipping Tool+");
static JLabel label;
static Graphics2D g2d;
static JPanel panel;
BufferedImage shot;

public main(){

    frame.setSize(400, 350);
    frame.setResizable(false);

    button.setFont(f);
    button.setBackground(Color.BLACK);
    button.setForeground(Color.white);
    button.addActionListener(new ActionListener() {

我的行动就在这里。

 public void actionPerformed(ActionEvent e)
        {
              System.out.println("sh");       
            try {
                shot = new Robot().createScreenCapture(new          
Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
            } catch (HeadlessException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            } catch (AWTException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }               
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            frame.setSize(screenSize);
            Image ii = (BufferedImage) shot;
            g2d.drawImage(shot, Image.SCALE_AREA_AVERAGING, 0, 0, 0, null);
        }
    });      

    ImageIcon image = new ImageIcon("res//images//SnippingTool.png");
    label = new JLabel(image);
    frame.add(button, BorderLayout.NORTH);
    frame.add(label, BorderLayout.SOUTH);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
}

public static void main(String args[]){
    main m = new main();

}

这没有任何作用。

@Override
public void actionPerformed(ActionEvent arg0) {
    // TODO Auto-generated method stub

}

}
4

1 回答 1

3

Graphics.drawImage(...) 方法只能从绘画方法中调用,例如进行自定义绘画的类的 paintComponent() 方法。阅读自定义绘画的 Swing 教程以获取更多信息。

最简单的解决方案是使用图像创建一个 ImageIcon,然后只需设置已添加到框架中的 JLabel 的图标。然后标签将自动重新绘制。

另外,不要使用静态变量。再次使用教程中的示例来更好地构建您的程序。

于 2013-07-01T15:15:13.317 回答