主要功能是:把几张JPG图片转换为GIF动态图片
2021-11-04 01:57:35 73KB JPG;GIF
1
主要介绍了PHP简单实现图片格式转换(jpg转png,gif转png等),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2021-11-03 21:24:37 39KB PHP 图片格式转换 PHP jpg转png
1
gif图片合成工具,软件虽然比较老了,但是好用。
2021-11-01 17:04:38 3.78MB gif合成
1
VS2005完美运行。MFC实现显示GIF动画,解决类似不知道进度比例,需要等待的状态。很值得下载。 包内容: 1.Loading的系列gif动画集合; 2.显示GIF动画原理 3.显示GIF动画例子
2021-11-01 14:16:21 548KB MFC VC 加载等待 显示GIF动画
1
用于教学/科学传播目的。 在 LISA_animation.m 中按 F5 以运行并创建名为“LISA_orbitography.gif”的动画文件,该文件将出现在与您注册 .m 文件相同的目录中。 LISA航天器星座画出一个等边三角形,并且每条航天器路径都从其邻居偏移了一个周期的2/3(2 * pi / 3 = 4个月) 旧代码(针对 gif 创建进行了更新,但未优化分解),但这不是这里的主要内容。
2021-10-29 18:41:30 3KB matlab
1
对当前通用图片格式文件的读写,显示操作的动态连接库
2021-10-28 23:30:05 181KB bmp jpg 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
10张gif的图片循环显示!适合刚接触android的
2021-10-28 20:48:47 804KB android gifview
1
SVG排版公众号文章『播放GIF与二次展开无缝长图』模板代码
2021-10-28 20:02:07 544KB 公众号 svg动画 svg排版 svg
GIF动画分解为单个图像帧。不需安装,解压缩后,双击GifSplitter.exe直接使用即可,不是汉化版的。
2021-10-28 19:25:48 37KB gif图片分离
1