xcf-rs 0.5.0

A basic standalone GIMP XCF library in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{ColorType, Precision, Property, Version};

#[derive(Debug, PartialEq)]
pub struct XcfHeader {
    pub version: Version,
    pub width: u32,
    pub height: u32,
    pub color_type: ColorType,
    pub precision: Precision,
    pub properties: Vec<Property>,
}