如何加载动画(循环)GIF 并将其显示为 Swing 背景Swing 容器,而不是使用 ImageIO.read() 或加载的静态图像Toolkit.getImage()?
要获取用于自定义绘画的动画 GIF,请使用 ImageIcon 而不是 ImageIO 或 Toolkit。 ImageIcon 提供了一个动画图像,与其他方法返回的静态图像不同。
以下代码片段说明了如何加载动画 GIF 并将其用作面板的背景:
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); } }); } }
在此代码中:
运行此代码可查看显示为背景的动画 GIF。
以上是如何将 GIF 动画显示为 Swing 容器背景?的详细内容。更多信息请关注PHP中文网其他相关文章!