我有一个程序在按下JButton时截取屏幕截图,但由于某种原因它不会在我的JFrame中显示。我知道这个方法是有效的,因为JFrame像我告诉的那样重新调整大小,但由于某些原因它不会显示镜头。
CODE
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
}
}
答案 0 :(得分:3)
只应使用绘制方法调用Graphics.drawImage(...)方法,例如执行自定义绘制的类的paintComponent()方法。有关详细信息,请阅读Custom Painting上的Swing教程。
最简单的解决方案是使用图像创建ImageIcon,然后只设置已添加到框架中的JLabel的图标。然后标签将自动重新绘制。
另外,不要使用静态变量。再次使用教程中的示例来更好地构建程序。