pub struct JpegEncoder<W> {
writer: BitWriter<W>,
components: Vec<Component>,
tables: Vec<[u8; 64]>,
luma_dctable: Cow<'static, [(u8, u16); 256]>,
luma_actable: Cow<'static, [(u8, u16); 256]>,
chroma_dctable: Cow<'static, [(u8, u16); 256]>,
chroma_actable: Cow<'static, [(u8, u16); 256]>,
pixel_density: PixelDensity,
}
Expand description
The representation of a JPEG encoder
Fields§
§writer: BitWriter<W>
§components: Vec<Component>
§tables: Vec<[u8; 64]>
§luma_dctable: Cow<'static, [(u8, u16); 256]>
§luma_actable: Cow<'static, [(u8, u16); 256]>
§chroma_dctable: Cow<'static, [(u8, u16); 256]>
§chroma_actable: Cow<'static, [(u8, u16); 256]>
§pixel_density: PixelDensity
Implementations§
§impl<W> JpegEncoder<W>where
W: Write,
impl<W> JpegEncoder<W>where
W: Write,
pub fn new(w: W) -> JpegEncoder<W>
pub fn new(w: W) -> JpegEncoder<W>
Create a new encoder that writes its output to w
pub fn new_with_quality(w: W, quality: u8) -> JpegEncoder<W>
pub fn new_with_quality(w: W, quality: u8) -> JpegEncoder<W>
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)
pub fn set_pixel_density(&mut self, pixel_density: PixelDensity)
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,
color_type: ExtendedColorType
) -> Result<(), ImageError>
pub fn encode( &mut self, image: &[u8], width: u32, height: u32, color_type: ExtendedColorType ) -> Result<(), ImageError>
Encodes the image stored in the raw byte buffer image
that has dimensions width
and height
and ColorType
c
The Image in encoded with subsampling ratio 4:2:2
§Panics
Panics if width * height * color_type.bytes_per_pixel() != image.len()
.
pub fn encode_image<I>(&mut self, image: &I) -> Result<(), ImageError>
pub fn encode_image<I>(&mut self, image: &I) -> Result<(), ImageError>
Encodes the given image.
As a special feature this does not require the whole image to be present in memory at the same time such that it may be computed on the fly, which is why this method exists on this encoder but not on others. Instead the encoder will iterate over 8-by-8 blocks of pixels at a time, inspecting each pixel exactly once. You can rely on this behaviour when calling this method.
The Image in encoded with subsampling ratio 4:2:2
Trait Implementations§
§impl<W> ImageEncoder for JpegEncoder<W>where
W: Write,
impl<W> ImageEncoder for JpegEncoder<W>where
W: Write,
§fn write_image(
self,
buf: &[u8],
width: u32,
height: u32,
color_type: ExtendedColorType
) -> Result<(), ImageError>
fn write_image( self, buf: &[u8], width: u32, height: u32, color_type: ExtendedColorType ) -> Result<(), ImageError>
§fn set_icc_profile(
&mut self,
icc_profile: Vec<u8>
) -> Result<(), UnsupportedError>
fn set_icc_profile( &mut self, icc_profile: Vec<u8> ) -> Result<(), UnsupportedError>
Auto Trait Implementations§
impl<W> Freeze for JpegEncoder<W>where
W: Freeze,
impl<W> RefUnwindSafe for JpegEncoder<W>where
W: RefUnwindSafe,
impl<W> Send for JpegEncoder<W>where
W: Send,
impl<W> Sync for JpegEncoder<W>where
W: Sync,
impl<W> Unpin for JpegEncoder<W>where
W: Unpin,
impl<W> UnwindSafe for JpegEncoder<W>where
W: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request