5 个版本

0.2.1 2024年6月15日
0.2.0 2022年8月16日
0.1.2 2019年6月17日
0.1.1 2019年6月17日
0.1.0 2019年6月17日

#8模拟器

MIT/Apache

620KB
16K SLoC

包含 (Zip 文件,93KB) tests/swfs/SoundStreamHead2.fla,(Cab 文件,33KB) tests/swfs/DefineBitsJpeg2-MX.fla,(Cab 文件,30KB) DefineButtonCxformSound-MX.fla,(Cab 文件,19KB) tests/swfs/DefineFont-MX.fla,(Cab 文件,28KB) tests/swfs/DefineMorphShape-MX.fla,(Zip 文件,26KB) tests/swfs/PlaceObject3-Image.fla 以及 46 个更多.

swf

crates.io docs.rs

一个用于读写 Adobe Flash SWF 文件格式的 Rust 库。

# Cargo.toml
[dependencies]
swf = "0.2"

读取

use std::io::BufReader;
use std::fs::File;

let file = File::open("file.swf").unwrap();
let reader = BufReader::new(file);
let swf_buf = swf::decompress_swf(reader).unwrap();
let swf = swf::parse_swf(&swf_buf).unwrap();
println!("The SWF has {} frame(s).", swf.header.num_frames());
println!("The SWF has {} tag(s).", swf.tags.len());

在此仓库中尝试 cargo run --example reading 运行此示例。

写入

use swf::*;
let header = Header {
    compression: Compression::Zlib,
    version: 6,
    stage_size: Rectangle {
        x_min: Twips::from_pixels(0.0), x_max: Twips::from_pixels(400.0),
        y_min: Twips::from_pixels(0.0), y_max: Twips::from_pixels(400.0)
    },
    frame_rate: Fixed8::from_f32(60.0),
    num_frames: 1,
};
let tags = [
    Tag::SetBackgroundColor(Color { r: 255, g: 0, b: 0, a: 255 }),
    Tag::ShowFrame
];
let file = std::fs::File::create("file.swf").unwrap();
let writer = std::io::BufWriter::new(file);
swf::write_swf(&header, &tags, writer).unwrap();

在此仓库中尝试 cargo run --example writing 运行此示例。

许可协议

在以下任一项许可下使用:

由您选择。

贡献

除非您明确说明,否则您有意提交给作品包含在内的任何贡献,根据 Apache-2.0 许可协议定义,应如上双重许可,不附加任何额外条款或条件。

依赖项

~6.5MB
~182K SLoC