Android显示GIF动画源码.zip
2022-07-13 22:04:59 938KB 安卓
Android 显示GIF动画源码.rar
2022-07-04 18:06:17 937KB Android
Android 显示GIF动画源码.zip
2022-06-16 18:05:56 806KB android 动画 软件/插件
该工程使用freeimage库显示GIF动画,利用多媒体时钟进行延时。感觉FREEIAMGE确实是一个优秀的库。简单易用。值得推荐啊。编译环境vs2005
2022-05-12 21:23:18 8.24MB freeimage gif 动画 animation
1
VS2005完美运行。MFC实现显示GIF动画,解决类似不知道进度比例,需要等待的状态。很值得下载。 包内容: 1.Loading的系列gif动画集合; 2.显示GIF动画原理 3.显示GIF动画例子
2021-12-17 09:59:33 544KB MFC VC 加载等待 显示GIF动画
1
超级炫酷的loading界面,以及封装显示gif动画库,让你玩转wpf
2021-11-23 06:09:36 982KB wpf loading界面 gif动画
1
VS2005完美运行。MFC实现显示GIF动画,解决类似不知道进度比例,需要等待的状态。很值得下载。 包内容: 1.Loading的系列gif动画集合; 2.显示GIF动画原理 3.显示GIF动画例子
2021-11-01 14:16:21 548KB MFC VC 加载等待 显示GIF动画
1
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(); //开始动画
2021-10-28 22:22:48 32KB Java源码-图形操作
1
labview显示gif动画.vi
2021-08-08 11:30:13 25KB labview显示gif动画 labview
1
CPictureEx 一个可以再MFC对话框中显示GIF动画的类。具体如何调用该类的接口以实现显示gif动画,详见http://blog.sina.com.cn/s/blog_79a0eceb01010orw.html
1