Struct SimulatorDisplay

Source
pub struct SimulatorDisplay<C> { /* private fields */ }
Expand description

Simulator display.

Implementations§

Source§

impl<C: PixelColor> SimulatorDisplay<C>

Source

pub fn with_default_color(size: Size, default_color: C) -> Self

Creates a new display filled with a color.

This constructor can be used if C doesn’t implement From<BinaryColor> or another default color is wanted.

Source

pub fn get_pixel(&self, point: Point) -> C

Returns the color of the pixel at a point.

§Panics

Panics if point is outside the display.

Source

pub fn diff( &self, other: &SimulatorDisplay<C>, ) -> Option<SimulatorDisplay<BinaryColor>>

Compares the content of this display with another display.

If both displays are equal None is returned, otherwise a difference image is returned. All pixels that are different will be filled with BinaryColor::On and all equal pixels with BinaryColor::Off.

§Panics

Panics if the both display don’t have the same size.

Source§

impl<C> SimulatorDisplay<C>

Source

pub fn new(size: Size) -> Self

Creates a new display.

The display is filled with C::from(BinaryColor::Off).

Examples found in repository?
examples/png-base64.rs (line 10)
9fn main() {
10    let mut display = SimulatorDisplay::<BinaryColor>::new(Size::new(256, 64));
11
12    let large_text = MonoTextStyle::new(&FONT_10X20, BinaryColor::On);
13    let centered = TextStyleBuilder::new()
14        .baseline(Baseline::Middle)
15        .alignment(Alignment::Center)
16        .build();
17
18    Text::with_text_style(
19        "embedded-graphics",
20        display.bounding_box().center(),
21        large_text,
22        centered,
23    )
24    .draw(&mut display)
25    .unwrap();
26
27    let output_settings = OutputSettingsBuilder::new().scale(2).build();
28    let output_image = display.to_grayscale_output_image(&output_settings);
29
30    println!(
31        "<img src=\"data:image/png;base64,{}\">",
32        output_image.to_base64_png().unwrap()
33    );
34}
More examples
Hide additional examples
examples/png-file.rs (line 10)
9fn main() {
10    let mut display = SimulatorDisplay::<BinaryColor>::new(Size::new(256, 64));
11
12    let large_text = MonoTextStyle::new(&FONT_10X20, BinaryColor::On);
13    let centered = TextStyleBuilder::new()
14        .baseline(Baseline::Middle)
15        .alignment(Alignment::Center)
16        .build();
17
18    Text::with_text_style(
19        "embedded-graphics",
20        display.bounding_box().center(),
21        large_text,
22        centered,
23    )
24    .draw(&mut display)
25    .unwrap();
26
27    let output_settings = OutputSettingsBuilder::new().scale(2).build();
28    let output_image = display.to_rgb_output_image(&output_settings);
29
30    let path = std::env::args_os()
31        .nth(1)
32        .expect("expected PNG file name argument");
33    output_image.save_png(path).unwrap();
34}
examples/themes.rs (line 12)
11fn main() {
12    let mut display = SimulatorDisplay::<BinaryColor>::new(Size::new(256, 64));
13
14    let large_text = MonoTextStyle::new(&FONT_10X20, BinaryColor::On);
15    let centered = TextStyleBuilder::new()
16        .baseline(Baseline::Middle)
17        .alignment(Alignment::Center)
18        .build();
19
20    Text::with_text_style(
21        "embedded-graphics",
22        display.bounding_box().center(),
23        large_text,
24        centered,
25    )
26    .draw(&mut display)
27    .unwrap();
28
29    // Uncomment one of the `theme` lines to use a different theme.
30    let output_settings = OutputSettingsBuilder::new()
31        //.theme(BinaryColorTheme::LcdGreen)
32        //.theme(BinaryColorTheme::LcdWhite)
33        .theme(BinaryColorTheme::LcdBlue)
34        //.theme(BinaryColorTheme::OledBlue)
35        //.theme(BinaryColorTheme::OledWhite)
36        .build();
37
38    let mut window = Window::new("Themes", &output_settings);
39    window.show_static(&display);
40}
examples/input-handling.rs (line 43)
42fn main() -> Result<(), core::convert::Infallible> {
43    let mut display: SimulatorDisplay<Rgb888> = SimulatorDisplay::new(Size::new(800, 480));
44    let mut window = Window::new("Click to move circle", &OutputSettings::default());
45
46    let mut position = Point::new(200, 200);
47    Circle::with_center(position, 200)
48        .into_styled(PrimitiveStyle::with_fill(FOREGROUND_COLOR))
49        .draw(&mut display)?;
50
51    'running: loop {
52        window.update(&display);
53
54        for event in window.events() {
55            match event {
56                SimulatorEvent::Quit => break 'running,
57                SimulatorEvent::KeyDown { keycode, .. } => {
58                    let delta = match keycode {
59                        Keycode::Left => Point::new(-KEYBOARD_DELTA, 0),
60                        Keycode::Right => Point::new(KEYBOARD_DELTA, 0),
61                        Keycode::Up => Point::new(0, -KEYBOARD_DELTA),
62                        Keycode::Down => Point::new(0, KEYBOARD_DELTA),
63                        _ => Point::zero(),
64                    };
65                    let new_position = position + delta;
66                    move_circle(&mut display, position, new_position)?;
67                    position = new_position;
68                }
69                SimulatorEvent::MouseButtonUp { point, .. } => {
70                    move_circle(&mut display, position, point)?;
71                    position = point;
72                }
73                _ => {}
74            }
75        }
76    }
77
78    Ok(())
79}
Source§

impl<C> SimulatorDisplay<C>
where C: PixelColor + Into<Rgb888>,

Source

pub fn to_rgb_output_image( &self, output_settings: &OutputSettings, ) -> OutputImage<Rgb888>

Converts the display contents into a RGB output image.

§Examples
use embedded_graphics::{pixelcolor::Rgb888, prelude::*};
use embedded_graphics_simulator::{OutputSettingsBuilder, SimulatorDisplay};

let output_settings = OutputSettingsBuilder::new().scale(2).build();

let display = SimulatorDisplay::<Rgb888>::new(Size::new(128, 64));

// draw something to the display

let output_image = display.to_rgb_output_image(&output_settings);
assert_eq!(output_image.size(), Size::new(256, 128));

// use output image:
// example: output_image.save_png("out.png")?;
Examples found in repository?
examples/png-file.rs (line 28)
9fn main() {
10    let mut display = SimulatorDisplay::<BinaryColor>::new(Size::new(256, 64));
11
12    let large_text = MonoTextStyle::new(&FONT_10X20, BinaryColor::On);
13    let centered = TextStyleBuilder::new()
14        .baseline(Baseline::Middle)
15        .alignment(Alignment::Center)
16        .build();
17
18    Text::with_text_style(
19        "embedded-graphics",
20        display.bounding_box().center(),
21        large_text,
22        centered,
23    )
24    .draw(&mut display)
25    .unwrap();
26
27    let output_settings = OutputSettingsBuilder::new().scale(2).build();
28    let output_image = display.to_rgb_output_image(&output_settings);
29
30    let path = std::env::args_os()
31        .nth(1)
32        .expect("expected PNG file name argument");
33    output_image.save_png(path).unwrap();
34}
Source

pub fn to_grayscale_output_image( &self, output_settings: &OutputSettings, ) -> OutputImage<Gray8>

Converts the display contents into a grayscale output image.

§Examples
use embedded_graphics::{pixelcolor::Gray8, prelude::*};
use embedded_graphics_simulator::{OutputSettingsBuilder, SimulatorDisplay};

let output_settings = OutputSettingsBuilder::new().scale(2).build();

let display = SimulatorDisplay::<Gray8>::new(Size::new(128, 64));

// draw something to the display

let output_image = display.to_grayscale_output_image(&output_settings);
assert_eq!(output_image.size(), Size::new(256, 128));

// use output image:
// example: output_image.save_png("out.png")?;
Examples found in repository?
examples/png-base64.rs (line 28)
9fn main() {
10    let mut display = SimulatorDisplay::<BinaryColor>::new(Size::new(256, 64));
11
12    let large_text = MonoTextStyle::new(&FONT_10X20, BinaryColor::On);
13    let centered = TextStyleBuilder::new()
14        .baseline(Baseline::Middle)
15        .alignment(Alignment::Center)
16        .build();
17
18    Text::with_text_style(
19        "embedded-graphics",
20        display.bounding_box().center(),
21        large_text,
22        centered,
23    )
24    .draw(&mut display)
25    .unwrap();
26
27    let output_settings = OutputSettingsBuilder::new().scale(2).build();
28    let output_image = display.to_grayscale_output_image(&output_settings);
29
30    println!(
31        "<img src=\"data:image/png;base64,{}\">",
32        output_image.to_base64_png().unwrap()
33    );
34}
Source§

impl<C> SimulatorDisplay<C>
where C: PixelColor + ToBytes, <C as ToBytes>::Bytes: AsRef<[u8]>,

Source

pub fn to_be_bytes(&self) -> Vec<u8>

Converts the display content to big endian raw data.

Source

pub fn to_le_bytes(&self) -> Vec<u8>

Converts the display content to little endian raw data.

Source

pub fn to_ne_bytes(&self) -> Vec<u8>

Converts the display content to native endian raw data.

Source§

impl<C> SimulatorDisplay<C>
where C: PixelColor + From<Rgb888>,

Source

pub fn load_png<P: AsRef<Path>>(path: P) -> ImageResult<Self>

Loads a PNG file.

Trait Implementations§

Source§

impl<C: Clone> Clone for SimulatorDisplay<C>

Source§

fn clone(&self) -> SimulatorDisplay<C>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<C: Debug> Debug for SimulatorDisplay<C>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<C: PixelColor> DrawTarget for SimulatorDisplay<C>

Source§

type Color = C

The pixel color type the targetted display supports.
Source§

type Error = Infallible

Error type to return when a drawing operation fails. Read more
Source§

fn draw_iter<I>(&mut self, pixels: I) -> Result<(), Self::Error>
where I: IntoIterator<Item = Pixel<Self::Color>>,

Draw individual pixels to the display without a defined order. Read more
Source§

fn fill_contiguous<I>( &mut self, area: &Rectangle, colors: I, ) -> Result<(), Self::Error>
where I: IntoIterator<Item = Self::Color>,

Fill a given area with an iterator providing a contiguous stream of pixel colors. Read more
Source§

fn fill_solid( &mut self, area: &Rectangle, color: Self::Color, ) -> Result<(), Self::Error>

Fill a given area with a solid color. Read more
Source§

fn clear(&mut self, color: Self::Color) -> Result<(), Self::Error>

Fill the entire display with a solid color. Read more
Source§

impl<C: Hash> Hash for SimulatorDisplay<C>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<C: Ord> Ord for SimulatorDisplay<C>

Source§

fn cmp(&self, other: &SimulatorDisplay<C>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<C> OriginDimensions for SimulatorDisplay<C>

Source§

fn size(&self) -> Size

Returns the size of the bounding box.
Source§

impl<C: PartialEq> PartialEq for SimulatorDisplay<C>

Source§

fn eq(&self, other: &SimulatorDisplay<C>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<C: PartialOrd> PartialOrd for SimulatorDisplay<C>

Source§

fn partial_cmp(&self, other: &SimulatorDisplay<C>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<C: Eq> Eq for SimulatorDisplay<C>

Source§

impl<C> StructuralPartialEq for SimulatorDisplay<C>

Auto Trait Implementations§

§

impl<C> Freeze for SimulatorDisplay<C>

§

impl<C> RefUnwindSafe for SimulatorDisplay<C>
where C: RefUnwindSafe,

§

impl<C> Send for SimulatorDisplay<C>
where C: Send,

§

impl<C> Sync for SimulatorDisplay<C>
where C: Sync,

§

impl<C> Unpin for SimulatorDisplay<C>

§

impl<C> UnwindSafe for SimulatorDisplay<C>
where C: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Dimensions for T

Source§

fn bounding_box(&self) -> Rectangle

Returns the bounding box.
Source§

impl<T> DrawTargetExt for T
where T: DrawTarget,

Source§

fn translated(&mut self, offset: Point) -> Translated<'_, T>

Creates a translated draw target based on this draw target. Read more
Source§

fn cropped(&mut self, area: &Rectangle) -> Cropped<'_, T>

Creates a cropped draw target based on this draw target. Read more
Source§

fn clipped(&mut self, area: &Rectangle) -> Clipped<'_, T>

Creates a clipped draw target based on this draw target. Read more
Source§

fn color_converted<C>(&mut self) -> ColorConverted<'_, T, C>
where C: PixelColor + Into<<T as DrawTarget>::Color>,

Creates a color conversion draw target. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.