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