[][src]Struct orbtk::Image

pub struct Image { /* fields omitted */ }

Methods

impl Image[src]

pub fn new(width: u32, height: u32) -> Image[src]

Creates a new image with the given width and height.

pub fn draw(&mut self, data: &[u32])[src]

Draws a u32 slice into the image.

pub fn from_data(
    width: u32,
    height: u32,
    data: Vec<u32>
) -> Result<Image, String>
[src]

Create a new image from a boxed slice of colors

pub fn from_path<P>(path: P) -> Result<Image, String> where
    P: AsRef<Path>, 
[src]

Load an image from file path. Supports BMP and PNG

pub fn width(&self) -> f64[src]

Gets the width.

pub fn height(&self) -> f64[src]

Gets the height.

pub fn data(&self) -> &[u32][src]

pub fn data_mut(&mut self) -> &mut [u32][src]

Trait Implementations

impl<'_> IntoPropertySource<Image> for (&'_ str, Entity)[src]

impl IntoPropertySource<Image> for Entity[src]

impl IntoPropertySource<Image> for (String, Entity)[src]

impl IntoPropertySource<Image> for Image[src]

impl<'_> IntoPropertySource<Image> for &'_ str[src]

impl Debug for Image[src]

impl Default for Image[src]

impl<'_> From<&'_ str> for Image[src]

impl From<String> for Image[src]

impl PartialEq<Image> for Image[src]

impl Clone for Image[src]

Auto Trait Implementations

impl Send for Image

impl Sync for Image

impl Unpin for Image

impl UnwindSafe for Image

impl RefUnwindSafe for Image

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E> Component for E where
    E: Any
[src]

impl<T> SetParameter for T