aseprite-reader2

Crates.ioaseprite-reader2
lib.rsaseprite-reader2
version0.1.0
sourcesrc
created_at2022-03-11 05:38:31.226474
updated_at2022-03-11 05:38:31.226474
descriptionAseprite reader
homepage
repository
max_upload_size
id548021
size80,552
Michail Denchev (mdenchev)

documentation

README

Aseprite Reader

aseprite-reader is a parsing crate for .aseprite files, made by the Aseprite Editor.

It's focus is on speed and completeness1.

It exports a main [Aseprite] type, through which the parsed contents can be accessed.

Examples

use aseprite_reader::Aseprite;

fn load_character() {
    let aseprite = Aseprite::from_path("assets/sprites/character.aseprite")
        .expect("Could not read aseprite file.");

    let tags = aseprite.tags();

    let walk_tag = &tags["walk"];
    println!("This tag uses these frames: {:?}", walk_tag.frames); // `.frames` is a range

    let all_frames = aseprite.frames();
    let frames = all_frames.get_for(&walk_tag.frames);
    let images = frames.get_images();
}

Footnotes

  1. Currently embedded ICC profiles are not supported

Commit count: 0

cargo fmt