Struct nannou::image::codecs::png::PngEncoder[][src]

pub struct PngEncoder<W> where
    W: Write
{ /* fields omitted */ }

PNG encoder

Implementations

impl<W> PngEncoder<W> where
    W: Write
[src]

pub fn new(w: W) -> PngEncoder<W>[src]

Create a new encoder that writes its output to w

pub fn new_with_quality(
    w: W,
    compression: CompressionType,
    filter: FilterType
) -> PngEncoder<W>
[src]

Create a new encoder that writes its output to w with CompressionType compression and FilterType filter.

It is best to view the options as a hint to the implementation on the smallest or fastest option for encoding a particular image. That is, using options that map directly to a PNG image parameter will use this parameter where possible. But variants that have no direct mapping may be interpreted differently in minor versions. The exact output is expressly not part the SemVer stability guarantee.

Note that it is not optimal to use a single filter type. It is likely that the library used will at some point gain the ability to use adaptive filtering methods per pixel row (or even interlaced row). We might make it the new default variant in which case choosing a particular filter method likely produces larger images. Be sure to check the release notes once in a while.

pub fn encode(
    self,
    data: &[u8],
    width: u32,
    height: u32,
    color: ColorType
) -> Result<(), ImageError>
[src]

Encodes the image data that has dimensions width and height and ColorType c.

Trait Implementations

impl<W> ImageEncoder for PngEncoder<W> where
    W: Write
[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for PngEncoder<W> where
    W: RefUnwindSafe

impl<W> Send for PngEncoder<W> where
    W: Send

impl<W> Sync for PngEncoder<W> where
    W: Sync

impl<W> Unpin for PngEncoder<W> where
    W: Unpin

impl<W> UnwindSafe for PngEncoder<W> where
    W: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

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.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,