欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

发布swf-util 0.01

程序员文章站 2024-01-06 19:29:04
...
swf-util是一个使用Ruby读取swf头信息(高度、宽度、文件大小、帧数等等)、压缩和解压缩swf文件的工具类库,改写自java版本。
项目主页:http://code.google.com/p/swf-util/
协议:MIT License
依赖BitStruct,请到这里下载安装bit-struct。

使用例子:

#read swf head
require 'swf_util'

header=SwfUtil::read_header("test.swf")
puts header.inspect
header.version
header.frame_rate
header.width
header.frame_count


#decompress swf
SwfUtil::decompress_swf("test.swf")

#compress swf
SwfUtil::compress_swf("test.swf")
 

 

相关标签: Ruby Google