Skip to main content

xcf_rs/data/
header.rs

1use crate::{ColorType, Precision, Property, Version};
2
3#[derive(Debug, PartialEq)]
4pub struct XcfHeader {
5    pub version: Version,
6    pub width: u32,
7    pub height: u32,
8    pub color_type: ColorType,
9    pub precision: Precision,
10    pub properties: Vec<Property>,
11}