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
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> 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