pub type spinPNGOption = _spinPNGOption;Expand description
Options for saving PNG images. Used in saving PNG images with a call to spinImageSavePng().
Aliased Type§
#[repr(C)]pub struct spinPNGOption {
pub interlaced: u8,
pub compressionLevel: u32,
pub reserved: [u32; 16],
}Fields§
§interlaced: u8Whether to save the PNG as interlaced.
compressionLevel: u32Compression level (0-9). 0 is no compression, 9 is best compression.
reserved: [u32; 16]Reserved for future use.