Memasukkan Gambar ke JFrame JAVA
Berikut contoh skrip void JAVA untuk memasukkan gambar ke JFrame.
public void gambar(){
String alamatdir="c:";
Toolkit tk = Toolkit.getDefaultToolkit();
Dimension screenSize = tk.getScreenSize();
int screenHeight = screenSize.height;
int screenWidth = screenSize.width;
setLocation(screenWidth / 4, screenHeight / 4);
Image backgroundImage = null;
String pathToTheImage = alamatdir+"/image/gambar.jpg";
try {
backgroundImage = ImageIO.read(new File(pathToTheImage));
} catch (IOException e) {
e.printStackTrace();
}
ImagePanel panel = new ImagePanel(backgroundImage,55, 155); panel.setSize(215, 180);
panel.setLocation(60, 45);
getContentPane().add(panel);
Color c = new Color(15,153,255);
this.getContentPane().setBackground(c);
repaint();
}
Contoh Hasil void gambar()
Jika ingin membahas skrip tersebut dengan saya dan pengunjung lain silahkan isi kotak komentar yang berada di bawah artikel ini ^_^
public void gambar(){
String alamatdir="c:";
Toolkit tk = Toolkit.getDefaultToolkit();
Dimension screenSize = tk.getScreenSize();
int screenHeight = screenSize.height;
int screenWidth = screenSize.width;
setLocation(screenWidth / 4, screenHeight / 4);
Image backgroundImage = null;
String pathToTheImage = alamatdir+"/image/gambar.jpg";
try {
backgroundImage = ImageIO.read(new File(pathToTheImage));
} catch (IOException e) {
e.printStackTrace();
}
ImagePanel panel = new ImagePanel(backgroundImage,55, 155); panel.setSize(215, 180);
panel.setLocation(60, 45);
getContentPane().add(panel);
Color c = new Color(15,153,255);
this.getContentPane().setBackground(c);
repaint();
}
Contoh Hasil void gambar()
Jika ingin membahas skrip tersebut dengan saya dan pengunjung lain silahkan isi kotak komentar yang berada di bawah artikel ini ^_^
Tidak ada komentar:
Catatan: Hanya anggota dari blog ini yang dapat mengirim komentar.