返回列表 發帖

ImageIcon 類別 (一)

本帖最後由 tonyh 於 2021-9-3 20:30 編輯

試利用 javax.swing 套件下的 ImageIcon 類別, 在視窗中置入圖片.

[設計導引]
1. 視窗的 左、右、下方 的邊框佔 3 像素 ; 上方的標題列佔 25 像素
     ( setResizable() 方法的參數設為 false 所展現的數據 )
2. 圖片大小 399x300 ; 標籤大小 399x300 ; 視窗大小 405x328

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.ImageIcon;
  4. public class Ch87 {
  5.        
  6.         private JFrame fm;
  7.         private JLabel lb;
  8.         private ImageIcon icon;
  9.        
  10.         Ch87()
  11.         {
  12.                 icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));

  13.                 //lb=new JLabel(new ImageIcon(Ch87.class.getResource("pic/01.jpg")));
  14.                 lb=new JLabel(icon);
  15.                 lb.setBounds(0, 0, 399, 300);
  16.                
  17.                 fm=new JFrame("ImageIcon 類別");
  18.                 fm.setBounds(100, 100, 405, 328);
  19.                 fm.setVisible(true);
  20.                 fm.setResizable(false);
  21.                 fm.setLayout(null);
  22.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.                 fm.add(lb);       
  24.         }
  25.                
  26.         public static void main(String[] args) {
  27.                 Ch87 app=new Ch87();
  28.         }
  29. }
複製代碼
pic.zip

  1. import javax.swing.ImageIcon;
  2. import javax.swing.JFrame;
  3. import javax.swing.JLabel;

  4. public class Ch02 {
  5.         private JFrame fm;
  6.         private JLabel l;
  7.         private ImageIcon icon;
  8.         Ch02(){
  9.                 icon=new ImageIcon(Ch02.class.getResource("pic/01.jpg"));
  10.                
  11.                 l=new JLabel(icon);
  12.         l.setBounds(0, 0, 399, 300);
  13.       
  14.         fm=new JFrame("ImageIcon 類別");
  15.         fm.setBounds(100, 100, 405, 328);
  16.         fm.setVisible(true);
  17.         fm.setResizable(false);
  18.         fm.setLayout(null);
  19.         fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  20.         fm.add(l);
  21.         }

  22.         public static void main(String[] args) {
  23.             new Ch02();

  24.         }

  25. }
複製代碼

TOP

  1. import javax.swing.ImageIcon;
  2. import javax.swing.JFrame;
  3. import javax.swing.JLabel;


  4. public class Ch02 {
  5.         private JFrame fm;
  6.         private JLabel lb;
  7.         private ImageIcon icon;

  8.         Ch02(){

  9.                 icon=new ImageIcon(Ch02.class.getResource("pic/Koala.jpg"));
  10.                
  11.                 lb=new JLabel(icon);
  12.                 lb.setBounds(0, 0, 399, 300);

  13.                 fm=new JFrame("ImageIcon 類別");
  14.                 fm.setBounds(100, 100, 405, 328);
  15.                 fm.setVisible(true);
  16.                 fm.setResizable(false);
  17.                 fm.setLayout(null);
  18.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  19.                 fm.add(lb);      
  20.         }
  21.         public static void main(String[] args) {
  22.                  Ch02 app=new Ch02();

  23.         }

  24. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.ImageIcon;
  4. public class Ch87 {
  5.       
  6.         private JFrame fm;
  7.         private JLabel lb;
  8.         private ImageIcon icon;
  9.       
  10.         Ch87()
  11.         {
  12.                 icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));

  13.                 //lb=new JLabel(new ImageIcon(Ch87.class.getResource("pic/01.jpg")));
  14.                 lb=new JLabel(icon);
  15.                 lb.setBounds(0, 0, 399, 300);
  16.                
  17.                 fm=new JFrame("ImageIcon 類別");
  18.                 fm.setBounds(100, 100, 405, 328);
  19.                 fm.setVisible(true);
  20.                 fm.setResizable(false);
  21.                 fm.setLayout(null);
  22.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.                 fm.add(lb);      
  24.         }
  25.                
  26.         public static void main(String[] args) {
  27.                 Ch87 app=new Ch87();
  28.         }
  29. }
複製代碼

TOP

本帖最後由 黃宥華 於 2021-9-6 23:09 編輯
  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.ImageIcon;
  4. public class Ch14 {
  5.       
  6.         private JFrame fm;
  7.         private JLabel lb;
  8.         private ImageIcon icon;
  9.       
  10.         Ch14()
  11.         {
  12.                 icon=new ImageIcon(Ch14.class.getResource("/01.jpg"));
  13.                 lb=new JLabel(icon);
  14.                 lb.setBounds(0, 0, 399, 300);
  15.                
  16.                 fm=new JFrame("ImageIcon 類別");
  17.                 fm.setBounds(100, 100, 405, 328);
  18.                 fm.setVisible(true);
  19.                 fm.setResizable(false);
  20.                 fm.setLayout(null);
  21.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fm.add(lb);      
  23.         }
  24.                
  25.         public static void main(String[] args) {
  26.                 new Ch14();
  27.         }
  28. }
複製代碼
hahahahahahahaha

TOP

返回列表