[ tombrady @ 13.02.2012. 22:17 ] @
Kako da ubacim sliku formata .gif ili .jpeg na JFrame? |
[ tombrady @ 13.02.2012. 22:17 ] @
[ biske86 @ 13.02.2012. 23:13 ] @
Najlakše preko labele. Npr:
Code (java): import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JLabel; public class Frejm extends javax.swing.JFrame { public Frejm() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JLabel a = new JLabel(); a.setIcon(new ImageIcon("image.jpg")); this.add(a); pack(); } public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new Frejm().setVisible(true); } }); } } Copyright (C) 2001-2025 by www.elitesecurity.org. All rights reserved.
|