Type Alias image::codecs::bmp::BMPEncoder
source · pub type BMPEncoder<'a, W> = BmpEncoder<'a, W>;
👎Deprecated: Use
BmpEncoder
insteadExpand description
Aliased Type§
struct BMPEncoder<'a, W> { /* private fields */ }
Implementations
source§impl<'a, W: Write + 'a> BmpEncoder<'a, W>
impl<'a, W: Write + 'a> BmpEncoder<'a, W>
Trait Implementations
source§impl<'a, W: Write> ImageEncoder for BmpEncoder<'a, W>
impl<'a, W: Write> ImageEncoder for BmpEncoder<'a, 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