39 lines
1.2 KiB
Rust
39 lines
1.2 KiB
Rust
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release
|
|
#![allow(rustdoc::missing_crate_level_docs)] // it's an example
|
|
|
|
use eframe::egui;
|
|
|
|
fn main() -> eframe::Result {
|
|
env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`).
|
|
let options = eframe::NativeOptions {
|
|
viewport: egui::ViewportBuilder::default().with_inner_size([400.0, 800.0]),
|
|
..Default::default()
|
|
};
|
|
eframe::run_native(
|
|
"Image Viewer",
|
|
options,
|
|
Box::new(|cc| {
|
|
// This gives us image support:
|
|
egui_extras::install_image_loaders(&cc.egui_ctx);
|
|
Ok(Box::<MyApp>::default())
|
|
}),
|
|
)
|
|
}
|
|
|
|
#[derive(Default)]
|
|
struct MyApp {}
|
|
|
|
impl eframe::App for MyApp {
|
|
fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
|
|
egui::CentralPanel::default().show(ctx, |ui| {
|
|
egui::ScrollArea::both().show(ui, |ui| {
|
|
ui.image(egui::include_image!("ferris.gif"));
|
|
ui.add(
|
|
egui::Image::new("https://picsum.photos/seed/1.759706314/1024").rounding(10.0),
|
|
);
|
|
ui.image(egui::include_image!("ferris.svg"));
|
|
});
|
|
});
|
|
}
|
|
}
|