2 个不稳定版本
使用旧的 Rust 2015
0.2.0 | 2016 年 12 月 11 日 |
---|---|
0.1.0 | 2016 年 12 月 7 日 |
11KB
195 行
Crate 用于解析 ElastoMania LGR 文件。
LGR 文件包含 PCX 图像。
示例用法
use elma_lgr::Lgr;
let lgr = Lgr::load_from_file("lgr/example.lgr", false, false).unwrap();
println!("There are {} images in this LGR file", lgr.images.len());
for (name, image) in lgr.images {
println!("{}, width = {}, height = {}", name, image.width, image.height);
}
依赖项
~320KB