Trait embedded_graphics::draw_target::DrawTargetExt[][src]

pub trait DrawTargetExt: DrawTarget + Sized {
    fn translated(&mut self, offset: Point) -> Translated<'_, Self>;
fn cropped(&mut self, area: &Rectangle) -> Cropped<'_, Self>;
fn clipped(&mut self, area: &Rectangle) -> Clipped<'_, Self>;
fn color_converted<C>(&mut self) -> ColorConverted<'_, Self, C>
    where
        C: PixelColor + Into<Self::Color>
; }
Expand description

Extension trait for DrawTargets.

Required methods

Creates a translated draw target based on this draw target.

All drawing operations are translated by offset pixels, before being passed to the parent draw target.

Examples

use embedded_graphics::{
    mock_display::MockDisplay,
    mono_font::{ascii::FONT_6X9, MonoTextStyle},
    pixelcolor::BinaryColor,
    prelude::*,
    text::Text,
};

let mut display = MockDisplay::new();
let mut translated_display = display.translated(Point::new(5, 10));

let style = MonoTextStyle::new(&FONT_6X9, BinaryColor::On);

// Draws text at position (5, 10) in the display coordinate system
Text::new("Text", Point::zero(), style).draw(&mut translated_display)?;

Creates a cropped draw target based on this draw target.

A cropped draw target is a draw target for a rectangular subregion of the parent draw target. Its coordinate system is shifted so that the origin coincides with area.top_left in the parent draw target’s coordinate system.

The bounding box of the returned target will always be contained inside the bounding box of the parent target. If any of the requested area lies outside the parent target’s bounding box the intersection of the parent target’s bounding box and area will be used.

Drawing operations outside the bounding box will not be clipped.

Examples

use embedded_graphics::{
    mock_display::MockDisplay,
    mono_font::{ascii::FONT_6X9, MonoTextStyle},
    pixelcolor::Rgb565,
    prelude::*,
    primitives::Rectangle,
    text::{Text, Alignment, Baseline, TextStyleBuilder},
};

/// Fills a draw target with a blue background and prints centered yellow text.
fn draw_text<T>(target: &mut T, text: &str) -> Result<(), T::Error>
where
    T: DrawTarget<Color = Rgb565>,
{
    target.clear(Rgb565::BLUE)?;

    let text_position = target.bounding_box().center();

    let character_style = MonoTextStyle::new(&FONT_6X9, Rgb565::YELLOW);
    let text_style = TextStyleBuilder::new()
        .alignment(Alignment::Center)
        .baseline(Baseline::Middle)
        .build();

    Text::with_text_style(text, text_position, character_style, text_style).draw(target)?;

    Ok(())
}

let mut display = MockDisplay::new();
display.set_allow_overdraw(true);

let area = Rectangle::new(Point::new(5, 10), Size::new(40, 15));
let mut cropped_display = display.cropped(&area);

draw_text(&mut cropped_display, "Text")?;

Creates a clipped draw target based on this draw target.

A clipped draw target is a draw target for a rectangular subregion of the parent draw target. The coordinate system of the created draw target is equal to the parent target’s coordinate system. All drawing operations outside the bounding box will be clipped.

The bounding box of the returned target will always be contained inside the bounding box of the parent target. If any of the requested area lies outside the parent target’s bounding box the intersection of the parent target’s bounding box and area will be used.

Examples

use embedded_graphics::{
    mock_display::MockDisplay,
    mono_font::{ascii::FONT_10X20, MonoTextStyle},
    pixelcolor::BinaryColor,
    prelude::*,
    primitives::Rectangle,
    text::Text,
};

let mut display = MockDisplay::new();

let area = Rectangle::new(Point::zero(), Size::new(4 * 10, 20));
let mut clipped_display = display.clipped(&area);

let style = MonoTextStyle::new(&FONT_10X20, BinaryColor::On);

// Only the first 4 characters will be drawn, because the others are outside
// the clipping area
Text::new("Clipped", Point::new(0, 15), style).draw(&mut clipped_display)?;

Creates a color conversion draw target.

A color conversion draw target is used to draw drawables with a different color type to a draw target. The drawable color type must implement Into<C>, where C is the draw target color type.

Performance

Color conversion can be expensive on embedded hardware and should be avoided if possible. Using the same color type for drawables and the draw target makes sure that no unnecessary color conversion is used. But in some cases color conversion will be required, for example, to draw images with a color format only known at runtime.

Examples

This example draws a BinaryColor image to an Rgb888 display.

use embedded_graphics::{
    image::{Image, ImageRaw},
    mock_display::MockDisplay,
    pixelcolor::{BinaryColor, Rgb888},
    prelude::*,
};

/// The image data.
const DATA: &[u8] = &[
    0b11110000, //
    0b10010000, //
    0b10010000, //
    0b11110000, //
];

// Create a `BinaryColor` image from the image data.
let raw_image = ImageRaw::<BinaryColor>::new(DATA, 4);
let image = Image::new(&raw_image, Point::zero());

// Create a `Rgb888` display.
let mut display = MockDisplay::<Rgb888>::new();

// The image can't directly be drawn to the draw target because they use different
// color type. This will fail to compile:
// image.draw(&mut display)?;

// To fix this `color_converted` is added to enable color conversion.
image.draw(&mut display.color_converted())?;

Implementors