Struct tinybmp::Bmp

source ·
pub struct Bmp<'a, C> { /* private fields */ }
Expand description

A BMP-format bitmap.

See the crate-level documentation for more information.

Implementations§

source§

impl<'a, C> Bmp<'a, C>where C: PixelColor + From<Rgb555> + From<Rgb565> + From<Rgb888>,

source

pub fn from_slice(bytes: &'a [u8]) -> Result<Self, ParseError>

Creates a bitmap object from a byte slice.

The created object keeps a shared reference to the input and does not dynamically allocate memory.

source

pub fn pixels(&self) -> Pixels<'_, C>

Returns an iterator over the pixels in this image.

The iterator always starts at the top left corner of the image, regardless of the row order of the BMP file. The coordinate of the first pixel is (0, 0).

source

pub const fn as_raw(&self) -> &RawBmp<'a>

Returns a reference to the raw BMP image.

The RawBmp instance can be used to access lower level information about the BMP file.

Trait Implementations§

source§

impl<'a, C: Clone> Clone for Bmp<'a, C>

source§

fn clone(&self) -> Bmp<'a, C>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, C: Debug> Debug for Bmp<'a, C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C> GetPixel for Bmp<'_, C>where C: PixelColor + From<Rgb555> + From<Rgb565> + From<Rgb888>,

§

type Color = C

The color type.
source§

fn pixel(&self, p: Point) -> Option<Self::Color>

Gets the color of a pixel. Read more
source§

impl<'a, C: Hash> Hash for Bmp<'a, C>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<C> ImageDrawable for Bmp<'_, C>where C: PixelColor + From<Rgb555> + From<Rgb565> + From<Rgb888>,

§

type Color = C

The color type.
source§

fn draw<D>(&self, target: &mut D) -> Result<(), D::Error>where D: DrawTarget<Color = C>,

Draws the entire image to the target. Read more
source§

fn draw_sub_image<D>( &self, target: &mut D, area: &Rectangle ) -> Result<(), D::Error>where D: DrawTarget<Color = Self::Color>,

Draws a part of the image to the target. Read more
source§

impl<'a, C: Ord> Ord for Bmp<'a, C>

source§

fn cmp(&self, other: &Bmp<'a, C>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<C> OriginDimensions for Bmp<'_, C>where C: PixelColor,

source§

fn size(&self) -> Size

Returns the size of the bounding box.
source§

impl<'a, C: PartialEq> PartialEq<Bmp<'a, C>> for Bmp<'a, C>

source§

fn eq(&self, other: &Bmp<'a, C>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, C: PartialOrd> PartialOrd<Bmp<'a, C>> for Bmp<'a, C>

source§

fn partial_cmp(&self, other: &Bmp<'a, C>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a, C: Copy> Copy for Bmp<'a, C>

source§

impl<'a, C: Eq> Eq for Bmp<'a, C>

source§

impl<'a, C> StructuralEq for Bmp<'a, C>

source§

impl<'a, C> StructuralPartialEq for Bmp<'a, C>

Auto Trait Implementations§

§

impl<'a, C> RefUnwindSafe for Bmp<'a, C>where C: RefUnwindSafe,

§

impl<'a, C> Send for Bmp<'a, C>where C: Send,

§

impl<'a, C> Sync for Bmp<'a, C>where C: Sync,

§

impl<'a, C> Unpin for Bmp<'a, C>where C: Unpin,

§

impl<'a, C> UnwindSafe for Bmp<'a, C>where C: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
§

impl<T> Dimensions for Twhere T: OriginDimensions,

§

fn bounding_box(&self) -> Rectangle

Returns the bounding box.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> ImageDrawableExt for Twhere T: ImageDrawable,

source§

fn sub_image(&self, area: &Rectangle) -> SubImage<'_, T>

Returns a sub image of this image drawable. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.