Java在窗口上加载显示GIF动画图像.rar

上传者: 39840387 | 上传时间: 2021-10-28 22:22:48 | 文件大小: 32KB | 文件类型: -
Java在窗口上加载显示GIF动画图像,将多个独立的GIF图像串联在一起显示,形成GIF特有的动画形式。主要代码如下:
  ImageIcon[] images; //用于动画的图标数组
  Timer animationTimer;
  int currentImage = 0; //当前图像编号
  int delay = 500; //图像切换延迟
  int width; //图像宽度
  int height; //图像高度
  public AnimatorIcon() //构造函数
  {
   setBackground(Color.white);
   images = new ImageIcon[2]; //初始化数组
   for (int i=0;i   images[i]=new ImageIcon(getClass().getResource("image" i ".gif")); //实例化图标
   width = images[0].getIconWidth(); //初始化宽度值
   height = images[0].getIconHeight(); //初始化高度值
  }
  public void paintComponent(Graphics g) { //重载组件绘制方法
   super.paintComponent(g); //调用父类函数
   images[currentImage].paintIcon(this,g,70,0); //绘制图标
   currentImage=(currentImage 1)%2; //更改当前图像编号
  }
  public void actionPerformed(ActionEvent actionEvent) {
   repaint();
  }
  public void startAnimation() { //开始动画
   if (animationTimer==null) {
   currentImage=0;
   animationTimer=new Timer(delay, this); //实例化Timer对象
   animationTimer.start(); //开始运行
   } else if (!animationTimer.isRunning()) //如果没有运行
   animationTimer.restart(); //重新运行
  }
  public void stopAnimation() {
   animationTimer.stop(); //停止动画
  }
  public static void main(String args[]) {
   AnimatorIcon animation = new AnimatorIcon(); //实例化动画图标
   JFrame frame = new JFrame("动画图标"); //实例化窗口对象
   frame.getContentPane().add(animation); //增加组件到窗口上
   frame.setSize(200, 100); //设置窗口尺寸
   frame.setVisible(true); //设置窗口可视
   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //关闭窗口时退出程序
   animation.startAnimation(); //开始动画

文件下载

评论信息

免责申明

【只为小站】的资源来自网友分享,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,【只为小站】 无法对用户传输的作品、信息、内容的权属或合法性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论 【只为小站】 经营者是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。
本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二条之规定,若资源存在侵权或相关问题请联系本站客服人员,zhiweidada#qq.com,请把#换成@,本站将给予最大的支持与配合,做到及时反馈和处理。关于更多版权及免责申明参见 版权及免责申明