博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
delphi 2010 播放GIF动画
阅读量:5117 次
发布时间:2019-06-13

本文共 685 字,大约阅读时间需要 2 分钟。

unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,   Dialogs, StdCtrls, ExtCtrls; type   TForm1 = class(TForm)     Main1: TImage;     btn1: TButton; procedure btn1Click(Sender: TObject); private {
Private declarations } public {
Public declarations } end; var Form1: TForm1; implementation uses GIFImg; //一定要加这个不然编译通不过 {
$R *.dfm} procedure TForm1.btn1Click(Sender: TObject); begin Main1.Picture.LoadFromFile('E:\344.gif'); TGIFImage(Main1.Picture.Graphic).AnimationSpeed := 100; TGIFImage(Main1.Picture.Graphic).Animate := True; end;

  

转载于:https://www.cnblogs.com/jxsoft/archive/2011/07/22/2113555.html

你可能感兴趣的文章
Dubbo和kafka的基本原理和测试方法
查看>>
http和https的区别
查看>>
接口自动化之数据依赖
查看>>
自动化框架之pytest
查看>>
jmeter(1)添加header和cookie
查看>>
jmeter接口上传图片功能
查看>>
Hbuild在线云ios打包失败,提示BuildConfigure Failed 31013 App Store 图标 未找到 解决方法...
查看>>
Vue 利用指令实现禁止反复发送请求
查看>>
找到树中指定id的所有父节点
查看>>
使用Xcode的Targets来管理开发和生产版本的构建
查看>>
今天新开通了博客
查看>>
Linux命令应用大词典-第4章 目录和文件操作
查看>>
A + B Problem II
查看>>
app与服务端通信时如何进行消息校验
查看>>
AS3优化性能笔记二
查看>>
wpf combobox
查看>>
mentohust 使用
查看>>
【BZOJ3158】千钧一发 最小割
查看>>
chrome备份网站
查看>>
resin后台输出中文乱码的解决办法!
查看>>