[][src]Struct image::jpeg::JPEGEncoder

pub struct JPEGEncoder<'a, W: 'a> { /* fields omitted */ }

The representation of a JPEG encoder

Methods

impl<'a, W: Write> JPEGEncoder<'a, W>[src]

pub fn new(w: &mut W) -> JPEGEncoder<W>[src]

Create a new encoder that writes its output to w

pub fn new_with_quality(w: &mut W, quality: u8) -> JPEGEncoder<W>[src]

Create a new encoder that writes its output to w, and has the quality parameter quality with a value in the range 1-100 where 1 is the worst and 100 is the best.

pub fn set_pixel_density(&mut self, pixel_density: PixelDensity)[src]

Set the pixel density of the images the encoder will encode. If this method is not called, then a default pixel aspect ratio of 1x1 will be applied, and no DPI information will be stored in the image.

pub fn encode(
    &mut self,
    image: &[u8],
    width: u32,
    height: u32,
    c: ColorType
) -> ImageResult<()>
[src]

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

The Image in encoded with subsampling ratio 4:2:2

Trait Implementations

impl<'a, W: Write> ImageEncoder for JPEGEncoder<'a, W>[src]

Auto Trait Implementations

impl<'a, W> RefUnwindSafe for JPEGEncoder<'a, W> where
    W: RefUnwindSafe

impl<'a, W> Send for JPEGEncoder<'a, W> where
    W: Send

impl<'a, W> Sync for JPEGEncoder<'a, W> where
    W: Sync

impl<'a, W> Unpin for JPEGEncoder<'a, W>

impl<'a, W> !UnwindSafe for JPEGEncoder<'a, W>

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> SetParameter for T[src]

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.