Struct tiff::encoder::TiffEncoder
source · pub struct TiffEncoder<W> { /* private fields */ }
Expand description
Tiff encoder.
With this type you can get a DirectoryEncoder
or a ImageEncoder
to encode tiff ifd directories with images.
See DirectoryEncoder
and ImageEncoder
.
§Examples
use tiff::encoder::*;
let mut tiff = TiffEncoder::new(&mut file).unwrap();
tiff.write_image::<colortype::RGB8>(100, 100, &image_data).unwrap();
Implementations§
source§impl<W: Write + Seek> TiffEncoder<W>
impl<W: Write + Seek> TiffEncoder<W>
pub fn new(writer: W) -> TiffResult<TiffEncoder<W>>
sourcepub fn new_directory(&mut self) -> TiffResult<DirectoryEncoder<'_, W>>
pub fn new_directory(&mut self) -> TiffResult<DirectoryEncoder<'_, W>>
Create a DirectoryEncoder
to encode an ifd directory.
sourcepub fn new_image<C: ColorType>(
&mut self,
width: u32,
height: u32,
) -> TiffResult<ImageEncoder<'_, W, C>>
pub fn new_image<C: ColorType>( &mut self, width: u32, height: u32, ) -> TiffResult<ImageEncoder<'_, W, C>>
Create an ‘ImageEncoder’ to encode an image one slice at a time.
sourcepub fn write_image<C: ColorType>(
&mut self,
width: u32,
height: u32,
data: &[C::Inner],
) -> TiffResult<()>
pub fn write_image<C: ColorType>( &mut self, width: u32, height: u32, data: &[C::Inner], ) -> TiffResult<()>
Convenience function to write an entire image from memory.
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