[−][src]Struct font_kit::canvas::Canvas
An in-memory bitmap surface for glyph rasterization.
Fields
pixels: Vec<u8>
The raw pixel data.
size: Size2D<u32>
The size of the buffer, in pixels.
stride: usize
The number of bytes between successive rows.
format: Format
The image format of the canvas.
Methods
impl Canvas
[src]
pub fn new(size: &Size2D<u32>, format: Format) -> Canvas
[src]
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).
pub fn with_stride(size: &Size2D<u32>, stride: usize, format: Format) -> Canvas
[src]
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
Auto Trait Implementations
impl Send for Canvas
impl Sync for Canvas
impl Unpin for Canvas
impl UnwindSafe for Canvas
impl RefUnwindSafe for Canvas
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,