ini bentuk .jpg nya ,, hahaha ..
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
package pelatihanitcke3.widget;import java.awt.Graphics;import java.awt.Graphics2D;import java.awt.Image;import javax.swing.ImageIcon;import javax.swing.JPanel;public class PanelGambar extends JPanel {Image img;public PanelGambar() {img = newImageIcon(getClass().getResource("/pelatihanitcke3/gambar/Tentang.jpg")).getImage();}protected void paintComponent(Graphics g) {super.paintComponent(g);Graphics2D gd = (Graphics2D) g.create();gd.drawImage(img, 0, 0, getWidth(), getHeight(), this);gd.dispose();
}
}