#[repr(C)]
pub struct EncoderSettings { pub zlibsettings: CompressSettings, pub auto_convert: bool, pub filter_palette_zero: bool, pub filter_strategy: FilterStrategy, pub force_palette: bool, pub add_id: bool, pub text_compression: bool, /* private fields */ }

Fields

zlibsettings: CompressSettings

settings for the zlib encoder, such as window size, …

auto_convert: bool

how to automatically choose output PNG color type, if at all

filter_palette_zero: bool

If true, follows the official PNG heuristic: if the PNG uses a palette or lower than 8 bit depth, set all filters to zero. Otherwise use the filter_strategy. Note that to completely follow the official PNG heuristic, filter_palette_zero must be true and filter_strategy must be FilterStrategy::MINSUM

filter_strategy: FilterStrategy

Which filter strategy to use when not using zeroes due to filter_palette_zero. Set filter_palette_zero to 0 to ensure always using your chosen strategy. Default: FilterStrategy::MINSUM

force_palette: bool

force creating a PLTE chunk if colortype is 2 or 6 (= a suggested palette). If colortype is 3, PLTE is always created

add_id: bool

add LodePNG identifier and version as a text chunk, for debugging

text_compression: bool

encode text chunks as zTXt chunks instead of tEXt chunks, and use compression in iTXt chunks

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.