2 releases

0.1.1 Feb 26, 2023
0.1.0 Mar 17, 2022

#497 in Images

Download history 11/week @ 2024-01-14 2/week @ 2024-01-21 2/week @ 2024-01-28 8/week @ 2024-02-04 17/week @ 2024-02-11 44/week @ 2024-02-18 36/week @ 2024-02-25 32/week @ 2024-03-03 40/week @ 2024-03-10 41/week @ 2024-03-17 40/week @ 2024-03-24 118/week @ 2024-03-31 27/week @ 2024-04-07 25/week @ 2024-04-14 27/week @ 2024-04-21 22/week @ 2024-04-28

119 downloads per month
Used in 4 crates (3 directly)

Apache-2.0

69KB
1.5K SLoC

Aseprite Reader

❕ Note: This, aseprite-reader2, is a fork of https://github.com/TheNeikos/aseprite-reader.

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

It's focus is on speed and completeness[^1].

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

[^1]: Currently embedded ICC profiles are not supported

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();
}

Dependencies

~12MB
~76K SLoC