返回列表 發帖

ImageIcon 類別 (一)

本帖最後由 tonyh 於 2016-3-26 17:33 編輯

試利用 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. }
複製代碼

本帖最後由 張峻瑋 於 2016-3-26 17:42 編輯
  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.ImageIcon;
  4. public class Ch87 {
  5.     private JFrame fm=new JFrame("ImageIcon 類別");
  6.     private JLabel lb;
  7.     private ImageIcon icon;
  8.     Ch87()
  9.     {
  10.                 icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
  11.                
  12.                 lb=new JLabel(icon);
  13.                 lb.setBounds(0, 0, 399, 300);
  14.                
  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(lb);
  21.                
  22.                
  23.     }
  24.         public static void main(String[] args) {
  25.                 Ch87 app=new Ch87();

  26.         }

  27. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.ImageIcon;
  4. public class Ch87 {
  5.         private JFrame fm;
  6.         private JLabel lb;
  7.         private ImageIcon ii;
  8.         Ch87(){
  9.                 ii=new ImageIcon (Ch87.class.getResource("pic/01.jpg"));
  10.                 lb=new JLabel(ii);
  11.                 lb.setBounds(0,0,399,300);
  12.                
  13.                 fm=new JFrame("II");
  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.                 Ch87 app=new Ch87();
  23.         }
  24. }
複製代碼
كخخخخخخخخخخخخخ

TOP

本帖最後由 劉得恩 於 2016-3-26 17:49 編輯
  1. import javax.swing.*;
  2. public class Ch87 {
  3.         private JFrame fm;
  4.         private JLabel lb;
  5.        
  6.         Ch87()
  7.         {
  8.                 fm=new JFrame("dfsdf");
  9.                 lb=new JLabel( new ImageIcon(Ch87.class.getResource("pic/Koala.jpg")) );
  10.                 fm.setVisible(true);
  11.                 fm.setResizable(false);
  12.                 fm.setLayout(null);
  13.                 lb.setBounds(0,0,399,300);
  14.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  15.                 fm.setBounds(100,100,405,328);
  16.                 fm.add(lb);
  17.         }
  18.         public static void main(String[] args) {
  19.                 new Ch87();

  20.         }
  21. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.ImageIcon;
  3. import javax.swing.JLabel;
  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.                
  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.         public static void main(String[] args)
  26.         {
  27.                 Ch87 app=new Ch87();

  28.         }

  29. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.ImageIcon;
  4. public class A90 {
  5.         private JFrame fm;
  6.         private ImageIcon ii;
  7.         private JLabel lb;
  8.         A90(){
  9.                 ii=new ImageIcon(A90.class.getResource("pic/01.jpg"));
  10.                
  11.                 lb=new JLabel(ii);
  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.                               
  22.         public static void main(String[] args) {
  23.                  new A90();

  24.         }
複製代碼

TOP

返回列表