[][src]Struct coffee::graphics::Image

pub struct Image { /* fields omitted */ }

A loaded image.

You can use this to load your spritesheets and draw your sprites!

Cloning an Image is cheap, it only clones a handle. It does not create a new copy of the image on the GPU.

Methods

impl Image[src]

pub fn new<P: AsRef<Path>>(gpu: &mut Gpu, path: P) -> Result<Image>[src]

Load an Image from the given path.

pub fn load<P: Into<PathBuf>>(path: P) -> Task<Image>[src]

Create a Task that loads an Image from the given path.

pub fn from_image(gpu: &mut Gpu, image: DynamicImage) -> Result<Image>[src]

Create an Image from a DynamicImage of the image crate.

pub fn from_colors(gpu: &mut Gpu, colors: &[Color]) -> Result<Image>[src]

Create an Image representing a color palette.

Each Color will be a pixel of the image, arranged horizontally.

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

Get the width of the Image.

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

Get the height of the Image.

pub fn draw<Q: IntoQuad>(&self, quad: Q, target: &mut Target)[src]

Draw the Image.

Trait Implementations

impl Clone for Image[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Image[src]

Auto Trait Implementations

impl Send for Image

impl Sync for Image

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,