pub struct BmpDecoder<R> { /* private fields */ }
Expand description
A bmp decoder
Implementations§
Source§impl<R> BmpDecoder<R>
impl<R> BmpDecoder<R>
Sourcepub fn new(reader: R) -> Result<BmpDecoder<R>, ImageError>
pub fn new(reader: R) -> Result<BmpDecoder<R>, ImageError>
Create a new decoder that decodes from the stream r
Sourcepub fn new_without_file_header(reader: R) -> Result<BmpDecoder<R>, ImageError>
pub fn new_without_file_header(reader: R) -> Result<BmpDecoder<R>, ImageError>
Create a new decoder that decodes from the stream r
without first
reading a BITMAPFILEHEADER. This is useful for decoding the CF_DIB
format
directly from the Windows clipboard.
Sourcepub fn set_indexed_color(&mut self, indexed_color: bool)
pub fn set_indexed_color(&mut self, indexed_color: bool)
If true, the palette in BMP does not apply to the image even if it is found. In other words, the output image is the indexed color.
Sourcepub fn get_palette(&self) -> Option<&[[u8; 3]]>
pub fn get_palette(&self) -> Option<&[[u8; 3]]>
Get the palette that is embedded in the BMP image, if any.
Trait Implementations§
Source§impl<R> ImageDecoder for BmpDecoder<R>
impl<R> ImageDecoder for BmpDecoder<R>
Source§fn dimensions(&self) -> (u32, u32)
fn dimensions(&self) -> (u32, u32)
Returns a tuple containing the width and height of the image
Source§fn color_type(&self) -> ColorType
fn color_type(&self) -> ColorType
Returns the color type of the image data produced by this decoder
Source§fn read_image(self, buf: &mut [u8]) -> Result<(), ImageError>
fn read_image(self, buf: &mut [u8]) -> Result<(), ImageError>
Returns all the bytes in the image. Read more
Source§fn read_image_boxed(
self: Box<BmpDecoder<R>>,
buf: &mut [u8],
) -> Result<(), ImageError>
fn read_image_boxed( self: Box<BmpDecoder<R>>, buf: &mut [u8], ) -> Result<(), ImageError>
Use
read_image
instead; this method is an implementation detail needed so the trait can
be object safe. Read moreSource§fn original_color_type(&self) -> ExtendedColorType
fn original_color_type(&self) -> ExtendedColorType
Returns the color type of the image file before decoding
Source§fn icc_profile(&mut self) -> Result<Option<Vec<u8>>, ImageError>
fn icc_profile(&mut self) -> Result<Option<Vec<u8>>, ImageError>
Returns the ICC color profile embedded in the image, or
Ok(None)
if the image does not have one. Read moreSource§fn exif_metadata(&mut self) -> Result<Option<Vec<u8>>, ImageError>
fn exif_metadata(&mut self) -> Result<Option<Vec<u8>>, ImageError>
Returns the raw Exif chunk, if it is present.
A third-party crate such as
kamadak-exif
is required to actually parse it. Read moreSource§fn orientation(&mut self) -> Result<Orientation, ImageError>
fn orientation(&mut self) -> Result<Orientation, ImageError>
Returns the orientation of the image. Read more
Source§fn total_bytes(&self) -> u64
fn total_bytes(&self) -> u64
Returns the total number of bytes in the decoded image. Read more
Source§fn set_limits(&mut self, limits: Limits) -> Result<(), ImageError>
fn set_limits(&mut self, limits: Limits) -> Result<(), ImageError>
Auto Trait Implementations§
impl<R> Freeze for BmpDecoder<R>where
R: Freeze,
impl<R> RefUnwindSafe for BmpDecoder<R>where
R: RefUnwindSafe,
impl<R> Send for BmpDecoder<R>where
R: Send,
impl<R> Sync for BmpDecoder<R>where
R: Sync,
impl<R> Unpin for BmpDecoder<R>where
R: Unpin,
impl<R> UnwindSafe for BmpDecoder<R>where
R: 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, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
Source§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.