ruffle/swf/examples/writing.rs

31 lines
849 B
Rust
Raw Normal View History

use swf::*;
fn main() {
2019-08-18 21:46:57 +00:00
let swf = Swf {
header: Header {
version: 6,
compression: Compression::Zlib,
2019-10-03 07:46:38 +00:00
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),
2019-08-18 21:46:57 +00:00
},
frame_rate: 60.0,
num_frames: 1,
},
tags: vec![
2019-10-03 07:46:38 +00:00
Tag::SetBackgroundColor(Color {
r: 255,
g: 0,
b: 0,
a: 255,
}),
Tag::ShowFrame,
],
2019-08-18 21:46:57 +00:00
};
let file = std::fs::File::create("tests/swfs/SimpleRedBackground.swf").unwrap();
let writer = std::io::BufWriter::new(file);
swf::write_swf(&swf, writer).unwrap();
}