如何使用动画 GIF 在 Swing 中显示动画背景
动画 GIF 可以毫不费力地在 Swing 应用程序中显示,但是将图像作为背景需要不同的方法。要加载背景动画图像,最好使用 ImageIcon 来获取图像。
ImageIcon 提供动画图像,与其他提供静态图像的方法不同。以下代码演示了如何使用动画 GIF 对具有 50 个按钮的面板背景进行动画处理:
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此代码创建一个 ImagePanel,它拉伸动画图像以填充面板的大小。然后,它向面板添加 50 个按钮,从而产生带有交互式按钮的动画背景。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3