Comment un GIF animé (cycliste) peut-il être chargé et affiché comme arrière-plan d'un Conteneur Swing, par opposition à l'image statique chargée à l'aide de ImageIO.read() ou Toolkit.getImage()?
Pour obtenir un GIF animé pour une peinture personnalisée, utilisez une ImageIcon plutôt qu'ImageIO ou Toolkit. ImageIcon fournit une image animée, contrairement à l'image statique renvoyée par les autres méthodes.
L'extrait de code suivant illustre comment charger un GIF animé et l'utiliser comme arrière-plan d'un panneau :
import java.awt.*; import javax.swing.*; import javax.swing.border.EmptyBorder; import java.net.URL; class ImagePanel extends JPanel { private Image image; ImagePanel(Image image) { this.image = image; } @Override public void paintComponent(Graphics g) { super.paintComponent(g); g.drawImage(image,0,0,getWidth(),getHeight(),this); } public static void main(String[] args) throws Exception { URL url = new URL("https://i.sstatic.net/iQFxo.gif"); final Image image = new ImageIcon(url).getImage(); SwingUtilities.invokeLater(new Runnable() { public void run() { JFrame f = new JFrame("Image"); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setLocationByPlatform(true); ImagePanel imagePanel = new ImagePanel(image); imagePanel.setLayout(new GridLayout(5,10,10,10)); imagePanel.setBorder(new EmptyBorder(20,20,20,20)); for (int ii=1; ii<51; ii++) { imagePanel.add(new JButton("" + ii)); } f.setContentPane(imagePanel); f.pack(); f.setVisible(true); } }); } }
Dans ce code :
Exécutez ce code pour voir le GIF animé affiché en arrière-plan.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!