Trait iced_core::image::Renderer

source ·
pub trait Renderer: Renderer {
    type Handle: Clone;

    // Required methods
    fn measure_image(&self, handle: &Self::Handle) -> Size<u32>;
    fn draw_image(
        &mut self,
        handle: Self::Handle,
        filter_method: FilterMethod,
        bounds: Rectangle,
        rotation: Radians
    );
}
Expand description

A Renderer that can render raster graphics.

Required Associated Types§

source

type Handle: Clone

The image Handle to be displayed. Iced exposes its own default implementation of a Handle

Required Methods§

source

fn measure_image(&self, handle: &Self::Handle) -> Size<u32>

Returns the dimensions of an image for the given Handle.

source

fn draw_image( &mut self, handle: Self::Handle, filter_method: FilterMethod, bounds: Rectangle, rotation: Radians )

Draws an image with the given Handle and inside the provided bounds.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Renderer for ()

§

type Handle = ()

source§

fn measure_image(&self, _handle: &Self::Handle) -> Size<u32>

source§

fn draw_image( &mut self, _handle: Self::Handle, _filter_method: FilterMethod, _bounds: Rectangle, _rotation: Radians )

Implementors§