[][src]Struct orbimage::Image

pub struct Image { /* fields omitted */ }

Methods

impl Image[src]

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

Create a new image

pub fn from_color(width: u32, height: u32, color: Color) -> Self[src]

Create a new image filled whole with color

pub fn from_data(
    width: u32,
    height: u32,
    data: Box<[Color]>
) -> Result<Self, String>
[src]

Create a new image from a boxed slice of colors

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

Load an image from file path. Supports BMP and PNG

pub fn default() -> Self[src]

Create a new empty image

pub fn resize(
    &self,
    w: u32,
    h: u32,
    resize_type: ResizeType
) -> Result<Self, String>
[src]

pub fn roi<'a>(&'a self, x: u32, y: u32, w: u32, h: u32) -> ImageRoi<'a>[src]

Get a piece of the image

pub fn into_data(self) -> Box<[Color]>[src]

Return a boxed slice of colors making up the image

pub fn draw<R: Renderer>(&self, renderer: &mut R, x: i32, y: i32)[src]

Draw the image on a window

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 Renderer for Image[src]

fn width(&self) -> u32[src]

Get the width of the image in pixels

fn height(&self) -> u32[src]

Get the height of the image in pixels

fn data(&self) -> &[Color][src]

Return a reference to a slice of colors making up the image

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

Return a mutable reference to a slice of colors making up the image

fn pixel(&mut self, x: i32, y: i32, color: Color)[src]

Draw a pixel

fn arc(&mut self, x0: i32, y0: i32, radius: i32, parts: u8, color: Color)[src]

Draw a piece of an arc. Negative radius will fill in the inside

fn circle(&mut self, x0: i32, y0: i32, radius: i32, color: Color)[src]

Draw a circle. Negative radius will fill in the inside

fn line4points(&mut self, x0: i32, y0: i32, x: i32, y: i32, color: Color)[src]

fn line(&mut self, argx1: i32, argy1: i32, argx2: i32, argy2: i32, color: Color)[src]

Draw a line

fn lines(&mut self, points: &[[i32; 2]], color: Color)[src]

fn draw_path_stroke(&mut self, graphicspath: GraphicsPath, color: Color)[src]

Draw a path (GraphicsPath)

fn char(&mut self, x: i32, y: i32, c: char, color: Color)[src]

Draw a character, using the loaded font

fn set(&mut self, color: Color)[src]

Set entire window to a color

fn clear(&mut self)[src]

Sets the whole window to black

fn rect(&mut self, x: i32, y: i32, w: u32, h: u32, color: Color)[src]

fn box_blur(&mut self, x: i32, y: i32, w: u32, h: u32, r: i32)[src]

fn box_shadow(
    &mut self,
    x: i32,
    y: i32,
    w: u32,
    h: u32,
    offset_x: i32,
    offset_y: i32,
    r: i32,
    color: Color
)
[src]

fn image(&mut self, start_x: i32, start_y: i32, w: u32, h: u32, data: &[Color])[src]

Display an image

fn image_legacy(
    &mut self,
    start_x: i32,
    start_y: i32,
    w: u32,
    h: u32,
    data: &[Color]
)
[src]

fn image_over(&mut self, start: i32, image_data: &[Color])[src]

Display an image overwriting a portion of window starting at given line : very quick!!

fn image_opaque(
    &mut self,
    start_x: i32,
    start_y: i32,
    w: u32,
    h: u32,
    image_data: &[Color]
)
[src]

Display an image using non transparent method

fn image_fast(
    &mut self,
    start_x: i32,
    start_y: i32,
    w: u32,
    h: u32,
    image_data: &[Color]
)
[src]

fn linear_gradient(
    &mut self,
    rect_x: i32,
    rect_y: i32,
    rect_width: u32,
    rect_height: u32,
    start_x: i32,
    start_y: i32,
    end_x: i32,
    end_y: i32,
    start_color: Color,
    end_color: Color
)
[src]

Draw a linear gradient in a rectangular region

fn rounded_rect(
    &mut self,
    x: i32,
    y: i32,
    w: u32,
    h: u32,
    radius: u32,
    filled: bool,
    color: Color
)
[src]

Draw a rect with rounded corners

fn wu_line(&mut self, x0: i32, y0: i32, x1: i32, y1: i32, color: Color)[src]

Draws antialiased line

fn wu_circle(&mut self, x0: i32, y0: i32, radius: i32, color: Color)[src]

Draws antialiased circle

fn getpixel(&self, x: i32, y: i32) -> Color[src]

Gets pixel color at x,y position

Auto Trait Implementations

impl Send for Image

impl !Sync for Image

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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.