標題:
ImageIcon 類別 (一)
[打印本頁]
作者:
tonyh
時間:
2019-1-5 15:15
標題:
ImageIcon 類別 (一)
本帖最後由 tonyh 於 2021-8-6 11:36 編輯
試利用 javax.swing 套件下的 ImageIcon 類別, 在視窗中置入圖片.
[設計導引]
1. 視窗的 左、右、下方 的邊框佔 3 像素 ; 上方的標題列佔 25 像素
( setResizable() 方法的參數設為 false 所展現的數據 )
2. 圖片大小 399x300 ; 標籤大小 399x300 ; 視窗大小 405x328
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch87 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch87()
{
icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
//lb=new JLabel(new ImageIcon(Ch87.class.getResource("pic/01.jpg")));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm=new JFrame("ImageIcon 類別");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch87 app=new Ch87();
}
}
複製代碼
作者:
蕭澧邦
時間:
2019-2-16 14:01
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch87 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch87() {
icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm=new JFrame("ImageIcon 類別");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch87 app=new Ch87();
}
}
複製代碼
作者:
譚暐霖
時間:
2019-2-16 14:16
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Ch87 {
JFrame fm;
JLabel lb;
ImageIcon ic;
Ch87()
{
ic=new ImageIcon(Ch87.class.getResource("pic/01 (2).jpg"));
lb=new JLabel(ic);
lb.setBounds(0,0,399,300);
fm=new JFrame("ImageIcon Practice");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(null);
fm.add(lb);
}
public static void main(String[] args) {
new Ch87();
}
}
複製代碼
作者:
蔡幸融
時間:
2019-2-16 14:16
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Ch87 {
JFrame fm;
JLabel lb;
ImageIcon ic;
Ch87()
{
ic=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
lb=new JLabel(ic);
lb.setBounds(0, 0, 399, 300);
fm=new JFrame("ImageIcon 練習");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(null);
fm.add(lb);
}
public static void main(String[] args) {
new Ch87();
}
}
複製代碼
作者:
黃宥鈞
時間:
2019-2-16 14:20
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch87 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch87()
{
icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
//lb=new JLabel(new ImageIcon(Ch87.class.getResource("pic/01.jpg")));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm=new JFrame("ImageIcon 類別");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch87 app=new Ch87();
}
}
複製代碼
作者:
高睿辰
時間:
2019-2-16 14:21
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch87 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch87()
{
icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm=new JFrame("ImageIcon 類別");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch87 app=new Ch87();
}
}
複製代碼
作者:
莊旻叡
時間:
2019-2-16 14:26
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch87 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch87()
{
icon=new ImageIcon(Ch87.class.getResource("pic/01.jpg"));
//lb=new JLabel(new ImageIcon(Ch87.class.getResource("pic/01.jpg")));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm=new JFrame("ImageIcon 類別");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch87 app=new Ch87();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2