[][src]Struct lodepng::ffi::State

#[repr(C)]pub struct State {
    pub decoder: DecoderSettings,
    pub encoder: EncoderSettings,
    pub info_raw: ColorMode,
    pub info_png: Info,
    pub error: ErrorCode,
}

The settings, state and information for extended encoding and decoding

Fields

decoder: DecoderSettingsencoder: EncoderSettingsinfo_raw: ColorMode

specifies the format in which you would like to get the raw pixel buffer

info_png: Info

info of the PNG image obtained after decoding

error: ErrorCode

Implementations

impl State[src]

pub fn new() -> Self[src]

👎 Deprecated:

Use Decoder or Encoder type instead

pub fn set_auto_convert(&mut self, mode: bool)[src]

pub fn set_filter_strategy(
    &mut self,
    mode: FilterStrategy,
    palette_filter_zero: bool
)
[src]

pub fn set_custom_zlib(
    &mut self,
    callback: custom_compress_callback,
    context: *const c_void
)
[src]

👎 Deprecated:

Use Encoder type instead of State

See `Encoder'

pub fn set_custom_deflate(
    &mut self,
    callback: custom_compress_callback,
    context: *const c_void
)
[src]

👎 Deprecated:

Use Encoder type instead of State

See `Encoder'

pub fn info_raw(&self) -> &ColorMode[src]

pub fn info_raw_mut(&mut self) -> &mut ColorMode[src]

pub fn info_png(&self) -> &Info[src]

pub fn info_png_mut(&mut self) -> &mut Info[src]

pub fn color_convert(&mut self, true_or_false: bool)[src]

whether to convert the PNG to the color type you want. Default: yes

pub fn read_text_chunks(&mut self, true_or_false: bool)[src]

if false but remember_unknown_chunks is true, they're stored in the unknown chunks.

pub fn remember_unknown_chunks(&mut self, true_or_false: bool)[src]

store all bytes from unknown chunks in the Info (off by default, useful for a png editor)

pub fn get_icc(&self) -> Result<Vec<u8>, Error>[src]

Decompress ICC profile from iCCP chunk

pub fn decode<Bytes: AsRef<[u8]>>(
    &mut self,
    input: Bytes
) -> Result<Image, Error>
[src]

👎 Deprecated:

Use Decoder type instead of State

Load PNG from buffer using State's settings


state.info_raw_mut().colortype = ColorType::RGBA;
match state.decode(&slice) {
    Ok(Image::RGBA(with_alpha)) => do_stuff(with_alpha),
    _ => panic!("¯\\_(ツ)_/¯")
}

pub fn decode_file<P: AsRef<Path>>(
    &mut self,
    filepath: P
) -> Result<Image, Error>
[src]

👎 Deprecated:

Use Decoder type instead of State

pub fn inspect(&mut self, input: &[u8]) -> Result<(usize, usize), Error>[src]

👎 Deprecated:

Use Decoder type instead of State

Updates info_png. Returns (width, height)

pub fn encode<PixelType: Pod>(
    &mut self,
    image: &[PixelType],
    w: usize,
    h: usize
) -> Result<Vec<u8>, Error>
[src]

👎 Deprecated:

Use Encoder type instead of State

pub fn encode_file<PixelType: Pod, P: AsRef<Path>>(
    &mut self,
    filepath: P,
    image: &[PixelType],
    w: usize,
    h: usize
) -> Result<(), Error>
[src]

👎 Deprecated:

Use Encoder type instead of State

Trait Implementations

impl Clone for State[src]

impl Debug for State[src]

impl Default for State[src]

Auto Trait Implementations

impl RefUnwindSafe for State

impl !Send for State

impl !Sync for State

impl Unpin for State

impl UnwindSafe for State

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.