tinytga 0.1.0

No-std, low memory footprint TGA image loader
Documentation

TinyTGA

Build Status Crates.io Docs.rs

Documentation

A small TGA parser designed for embedded, no-std environments but usable anywhere. Beyond parsing the image header, no other allocations are made. A reference to the input image data is kept and slices are returned from it.

Call Tga.into_iter() to get an iterator over individual pixels in the image.

Example

use tinytga::{ImageType, Tga, TgaFooter, TgaHeader};

let data = include_bytes!("./image.tga");

// Create a TGA instance from a byte slice
let img = Tga::from_slice(data).unwrap();

// Take a look at the header
assert_eq!(
    img.header,
    TgaHeader {
        id_len: 0,
        has_color_map: false,
        image_type: ImageType::Truecolor,
        color_map_start: 0,
        color_map_len: 0,
        color_map_depth: 0,
        x_origin: 0,
        y_origin: 8,
        width: 8,
        height: 8,
        pixel_depth: 24,
        image_descriptor: 32
    }
);

// Take a look at the footer
assert_eq!(
    img.footer,
    TgaFooter {
        extension_area_offset: 0,
        developer_directory_offset: 0
    }
);

// Collect pixels into a `Vec<u32>`
let pixels = img.into_iter().collect::<Vec<u32>>();

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.