Struct image::codecs::tiff::TiffEncoder
source · pub struct TiffEncoder<W> { /* private fields */ }
Expand description
Encoder for tiff images
Implementations§
source§impl<W: Write + Seek> TiffEncoder<W>
impl<W: Write + Seek> TiffEncoder<W>
sourcepub fn new(w: W) -> TiffEncoder<W>
pub fn new(w: W) -> TiffEncoder<W>
Create a new encoder that writes its output to w
sourcepub fn encode(
self,
data: &[u8],
width: u32,
height: u32,
color: ColorType,
) -> ImageResult<()>
pub fn encode( self, data: &[u8], width: u32, height: u32, color: ColorType, ) -> ImageResult<()>
Encodes the image image
that has dimensions width
and height
and ColorType
c
.
16-bit types assume the buffer is native endian.
§Panics
Panics if width * height * color_type.bytes_per_pixel() != data.len()
.
Trait Implementations§
source§impl<W: Write + Seek> ImageEncoder for TiffEncoder<W>
impl<W: Write + Seek> ImageEncoder for TiffEncoder<W>
source§fn write_image(
self,
buf: &[u8],
width: u32,
height: u32,
color_type: ColorType,
) -> ImageResult<()>
fn write_image( self, buf: &[u8], width: u32, height: u32, color_type: ColorType, ) -> ImageResult<()>
Writes all the bytes in an image to the encoder. Read more
Auto Trait Implementations§
impl<W> Freeze for TiffEncoder<W>where
W: Freeze,
impl<W> RefUnwindSafe for TiffEncoder<W>where
W: RefUnwindSafe,
impl<W> Send for TiffEncoder<W>where
W: Send,
impl<W> Sync for TiffEncoder<W>where
W: Sync,
impl<W> Unpin for TiffEncoder<W>where
W: Unpin,
impl<W> UnwindSafe for TiffEncoder<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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 more