文件名称:
Java在窗口上加载显示GIF动画图像.rar
开发工具:
文件大小: 32kb
下载次数: 0
上传时间: 2019-07-10
详细说明: 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(); //开始动画
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
相关搜索: