pub struct BitMapElement<'a, Coord, P: PixelFormat = RGBPixel> { /* private fields */ }
Expand description

The element that contains a bitmap on it

Implementations§

source§

impl<'a, Coord, P: PixelFormat> BitMapElement<'a, Coord, P>

source

pub fn new(pos: Coord, size: (u32, u32)) -> Self

Create a new empty bitmap element. This can be use as the draw and blit pattern.

  • pos: The left upper coordinate for the element
  • size: The size of the bitmap
source

pub fn with_owned_buffer( pos: Coord, size: (u32, u32), buf: Vec<u8> ) -> Option<Self>

Create a new bitmap element with an pre-allocated owned buffer, this function will take the ownership of the buffer.

  • pos: The left upper coordinate of the elelent
  • size: The size of the bitmap
  • buf: The buffer to use
  • returns: The newly created image element, if the buffer isn’t fit the image dimension, this will returns an None.
source

pub fn with_mut(pos: Coord, size: (u32, u32), buf: &'a mut [u8]) -> Option<Self>

Create a new bitmap element with a mut borrow to an existing buffer

  • pos: The left upper coordinate of the elelent
  • size: The size of the bitmap
  • buf: The buffer to use
  • returns: The newly created image element, if the buffer isn’t fit the image dimension, this will returns an None.
source

pub fn with_ref(pos: Coord, size: (u32, u32), buf: &'a [u8]) -> Option<Self>

Create a new bitmap element with a shared borrowed buffer. This means if we want to modifiy the content of the image, the buffer is automatically copied

  • pos: The left upper coordinate of the elelent
  • size: The size of the bitmap
  • buf: The buffer to use
  • returns: The newly created image element, if the buffer isn’t fit the image dimension, this will returns an None.
source

pub fn copy_to<Coord2>(&self, pos: Coord2) -> BitMapElement<'_, Coord2, P>

Copy the existing bitmap element to another location

  • pos: The new location to copy
source

pub fn move_to(&mut self, pos: Coord)

Move the existing bitmap element to a new position

  • pos: The new position
source

pub fn as_bitmap_backend(&mut self) -> BitMapBackend<'_, P>

Make the bitmap element as a bitmap backend, so that we can use plotters drawing functionality on the bitmap element

Trait Implementations§

source§

impl<'a, Coord, DB: DrawingBackend> Drawable<DB, BackendCoordOnly> for BitMapElement<'a, Coord>

source§

fn draw<I: Iterator<Item = BackendCoord>>( &self, points: I, backend: &mut DB, _: (u32, u32) ) -> Result<(), DrawingErrorKind<DB::ErrorType>>

Actually draws the element. The key points is already translated into the image coordinate and can be used by DC directly
source§

impl<'a, Coord> From<(Coord, DynamicImage)> for BitMapElement<'a, Coord, BGRXPixel>

source§

fn from((pos, image): (Coord, DynamicImage)) -> Self

Converts to this type from the input type.
source§

impl<'a, Coord> From<(Coord, DynamicImage)> for BitMapElement<'a, Coord, RGBPixel>

source§

fn from((pos, image): (Coord, DynamicImage)) -> Self

Converts to this type from the input type.
source§

impl<'a, 'b, Coord> PointCollection<'a, Coord, BackendCoordOnly> for &'a BitMapElement<'b, Coord>

§

type Point = &'a Coord

The item in point iterator
§

type IntoIter = Once<&'a Coord>

The point iterator
source§

fn point_iter(self) -> Self::IntoIter

framework to do the coordinate mapping

Auto Trait Implementations§

§

impl<'a, Coord, P> RefUnwindSafe for BitMapElement<'a, Coord, P>where Coord: RefUnwindSafe, P: RefUnwindSafe,

§

impl<'a, Coord, P> Send for BitMapElement<'a, Coord, P>where Coord: Send, P: Send,

§

impl<'a, Coord, P> Sync for BitMapElement<'a, Coord, P>where Coord: Sync, P: Sync,

§

impl<'a, Coord, P> Unpin for BitMapElement<'a, Coord, P>where Coord: Unpin, P: Unpin,

§

impl<'a, Coord, P = RGBPixel> !UnwindSafe for BitMapElement<'a, Coord, P>

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> 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<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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<'b, T, DB, Coord> IntoDynElement<'b, DB, Coord> for Twhere T: Drawable<DB, BackendCoordOnly> + 'b, &'a T: for<'a> PointCollection<'a, Coord, BackendCoordOnly>, Coord: Clone, DB: DrawingBackend,

source§

fn into_dyn(self) -> DynElement<'b, DB, Coord>

Make the conversion
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.