- Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer`
30 lines
677 B
Rust
30 lines
677 B
Rust
use crate::core::image;
|
|
use crate::core::svg;
|
|
use crate::core::{Color, Rectangle};
|
|
|
|
/// A raster or vector image.
|
|
#[derive(Debug, Clone)]
|
|
pub enum Image {
|
|
/// A raster image.
|
|
Raster {
|
|
/// The handle of a raster image.
|
|
handle: image::Handle,
|
|
|
|
/// The filter method of a raster image.
|
|
filter_method: image::FilterMethod,
|
|
|
|
/// The bounds of the image.
|
|
bounds: Rectangle,
|
|
},
|
|
/// A vector image.
|
|
Vector {
|
|
/// The handle of a vector image.
|
|
handle: svg::Handle,
|
|
|
|
/// The [`Color`] filter
|
|
color: Option<Color>,
|
|
|
|
/// The bounds of the image.
|
|
bounds: Rectangle,
|
|
},
|
|
}
|