Struct font_kit::canvas::Canvas

source ·
pub struct Canvas {
    pub pixels: Vec<u8>,
    pub size: Vector2I,
    pub stride: usize,
    pub format: Format,
}
Expand description

An in-memory bitmap surface for glyph rasterization.

Fields§

§pixels: Vec<u8>

The raw pixel data.

§size: Vector2I

The size of the buffer, in pixels.

§stride: usize

The number of bytes between successive rows.

§format: Format

The image format of the canvas.

Implementations§

source§

impl Canvas

source

pub fn new(size: Vector2I, format: Format) -> Canvas

Creates a new blank canvas with the given pixel size and format.

Stride is automatically calculated from width.

The canvas is initialized with transparent black (all values 0).

source

pub fn with_stride(size: Vector2I, stride: usize, format: Format) -> Canvas

Creates a new blank canvas with the given pixel size, stride (number of bytes between successive rows), and format.

The canvas is initialized with transparent black (all values 0).

Trait Implementations§

source§

impl Debug for Canvas

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Canvas

§

impl RefUnwindSafe for Canvas

§

impl Send for Canvas

§

impl Sync for Canvas

§

impl Unpin for Canvas

§

impl UnwindSafe for Canvas

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, 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.