You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(breaking)#28 Merged DynamicBmp and Bmp. Bmp will now automatically convert colors and doesn't require explicit color type annotations anymore.
(breaking)#28 Changed bounds for the Bmp color type from C: PixelColor + From<<C as PixelColor>::Raw> to C: PixelColor + From<Rgb555> + From<Rgb565> + From<Rgb888>.
(breaking)#28 Added additional ParseError variants for improved reporting of errors.
(breaking)#28 Removed RawBmp::size and RawBmp::color_bpp. Use RawBmp::header().image_size and RawBmp::header().bpp instead.
#28Bpp::bits, RawBmp::image_data, RawBmp::header, and RawPixel::new are now const.
#28 BMP files with incomplete image data are now detected by Bmp::from_slice.
Fixed
#32 Report error for images with width <= 0 or height == 0 instead of causing a panic.