JAVA 图片大小设置
我想将插入的图片大小调成和窗体一样,就是在窗体中是全屏显示的,各位帮忙看看以下程序怎么改啊importjava.util.*;importjavax.swing.*;pu...
我想将插入的图片大小调成和窗体一样,就是在窗体中是全屏显示的,各位帮忙看看以下程序怎么改啊
import java.util.*;
import javax.swing.*;
public class Test extends JFrame {
private JPanel pan;
private ImageIcon icon;
private JLabel lab;
Test(){
this.setBounds(200, 200, 300, 200);
pan = new JPanel();
icon = new ImageIcon("D:\\java程序\\1.jpg");
lab = new JLabel(icon);
lab.setBounds(0, 0,300,200);
this.getLayeredPane().setLayout(null);
this.getLayeredPane().add(lab, new Integer(Integer.MIN_VALUE));
this.setContentPane(pan);
pan.setOpaque(false);
this.setVisible(true);
}
public static void main(String args[]){
new Test();
}
} 展开
import java.util.*;
import javax.swing.*;
public class Test extends JFrame {
private JPanel pan;
private ImageIcon icon;
private JLabel lab;
Test(){
this.setBounds(200, 200, 300, 200);
pan = new JPanel();
icon = new ImageIcon("D:\\java程序\\1.jpg");
lab = new JLabel(icon);
lab.setBounds(0, 0,300,200);
this.getLayeredPane().setLayout(null);
this.getLayeredPane().add(lab, new Integer(Integer.MIN_VALUE));
this.setContentPane(pan);
pan.setOpaque(false);
this.setVisible(true);
}
public static void main(String args[]){
new Test();
}
} 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询