pub struct Bitmap { /* private fields */ }
Expand description

A bitmap that can be used to query pixel data in a PFF2 Glyph.

There are 2 ways of querying pixels:

let bitmap = Bitmap::new(8, 1, &[0b00000001])?;

let pixel = bitmap.pixel(7, 0)?;
assert_eq!(pixel, true);
  • Using an iterator
let bitmap = Bitmap::default();

for row in bitmap {
    for pixel in row {
        print!("{}", if pixel { "##" } else { "  " });
    }
}

Implementations§

source§

impl Bitmap

source

pub fn byte_count_from_size(width: usize, height: usize) -> usize

Calculates the length of the bitmap in bytes from the dimentions of the bitmap in pixels

source

pub fn new(width: usize, height: usize, bitmap: &[u8]) -> Option<Self>

Constructs self by wrapping the bitmap slice in a OwnedSlice and verifying that it’s length is exactly Self::byte_count_from_size.

source

pub fn pixel(&self, x: usize, y: usize) -> Option<bool>

Returns Some(true) if the pixel is filled, Some(false) if the pixel if transparent, None if out of bounds.

source

pub fn width(&self) -> usize

Bitmap width (line length)

source

pub fn height(&self) -> usize

Bitmap height (number of lines)

source

pub fn iter(&self) -> BitmapIter

Creates an iter over self

Trait Implementations§

source§

impl Clone for Bitmap

source§

fn clone(&self) -> Bitmap

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 Debug for Bitmap

source§

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

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

impl Default for Bitmap

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl IntoIterator for &Bitmap

§

type IntoIter = BitmapIter

Which kind of iterator are we turning this into?
§

type Item = BitmapRowIter

The type of the elements being iterated over.
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Bitmap

§

type IntoIter = BitmapIter

Which kind of iterator are we turning this into?
§

type Item = BitmapRowIter

The type of the elements being iterated over.
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq for Bitmap

source§

fn eq(&self, other: &Bitmap) -> 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 Eq for Bitmap

source§

impl StructuralEq for Bitmap

source§

impl StructuralPartialEq for Bitmap

Auto Trait Implementations§

§

impl RefUnwindSafe for Bitmap

§

impl !Send for Bitmap

§

impl !Sync for Bitmap

§

impl Unpin for Bitmap

§

impl UnwindSafe for Bitmap

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.