Merge pull request #2356 from Bajix/feature/bytes
Utilize bytes::Bytes for images
This commit is contained in:
commit
a11784f9ed
12 changed files with 161 additions and 167 deletions
|
|
@ -137,6 +137,7 @@ iced_winit = { version = "0.13.0-dev", path = "winit" }
|
||||||
async-std = "1.0"
|
async-std = "1.0"
|
||||||
bitflags = "2.0"
|
bitflags = "2.0"
|
||||||
bytemuck = { version = "1.0", features = ["derive"] }
|
bytemuck = { version = "1.0", features = ["derive"] }
|
||||||
|
bytes = "1.6"
|
||||||
cosmic-text = "0.10"
|
cosmic-text = "0.10"
|
||||||
dark-light = "1.0"
|
dark-light = "1.0"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ advanced = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags.workspace = true
|
bitflags.workspace = true
|
||||||
|
bytes.workspace = true
|
||||||
glam.workspace = true
|
glam.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
num-traits.workspace = true
|
num-traits.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,45 @@
|
||||||
//! Load and draw raster graphics.
|
//! Load and draw raster graphics.
|
||||||
|
pub use bytes::Bytes;
|
||||||
|
|
||||||
use crate::{Rectangle, Size};
|
use crate::{Rectangle, Size};
|
||||||
|
|
||||||
use rustc_hash::FxHasher;
|
use rustc_hash::FxHasher;
|
||||||
use std::hash::{Hash, Hasher as _};
|
use std::hash::{Hash, Hasher};
|
||||||
use std::path::PathBuf;
|
use std::path::{Path, PathBuf};
|
||||||
use std::sync::Arc;
|
|
||||||
|
|
||||||
/// A handle of some image data.
|
/// A handle of some image data.
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
#[derive(Clone, PartialEq, Eq)]
|
||||||
pub struct Handle {
|
pub enum Handle {
|
||||||
id: u64,
|
/// A file handle. The image data will be read
|
||||||
data: Data,
|
/// from the file path.
|
||||||
|
///
|
||||||
|
/// Use [`from_path`] to create this variant.
|
||||||
|
///
|
||||||
|
/// [`from_path`]: Self::from_path
|
||||||
|
Path(Id, PathBuf),
|
||||||
|
|
||||||
|
/// A handle pointing to some encoded image bytes in-memory.
|
||||||
|
///
|
||||||
|
/// Use [`from_bytes`] to create this variant.
|
||||||
|
///
|
||||||
|
/// [`from_bytes`]: Self::from_bytes
|
||||||
|
Bytes(Id, Bytes),
|
||||||
|
|
||||||
|
/// A handle pointing to decoded image pixels in RGBA format.
|
||||||
|
///
|
||||||
|
/// Use [`from_rgba`] to create this variant.
|
||||||
|
///
|
||||||
|
/// [`from_rgba`]: Self::from_rgba
|
||||||
|
Rgba {
|
||||||
|
/// The id of this handle.
|
||||||
|
id: Id,
|
||||||
|
/// The width of the image.
|
||||||
|
width: u32,
|
||||||
|
/// The height of the image.
|
||||||
|
height: u32,
|
||||||
|
/// The pixels.
|
||||||
|
pixels: Bytes,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Handle {
|
impl Handle {
|
||||||
|
|
@ -18,56 +47,48 @@ impl Handle {
|
||||||
///
|
///
|
||||||
/// Makes an educated guess about the image format by examining the data in the file.
|
/// Makes an educated guess about the image format by examining the data in the file.
|
||||||
pub fn from_path<T: Into<PathBuf>>(path: T) -> Handle {
|
pub fn from_path<T: Into<PathBuf>>(path: T) -> Handle {
|
||||||
Self::from_data(Data::Path(path.into()))
|
let path = path.into();
|
||||||
|
|
||||||
|
Self::Path(Id::path(&path), path)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates an image [`Handle`] containing the image pixels directly. This
|
/// Creates an image [`Handle`] containing the encoded image data directly.
|
||||||
/// function expects the input data to be provided as a `Vec<u8>` of RGBA
|
|
||||||
/// pixels.
|
|
||||||
///
|
|
||||||
/// This is useful if you have already decoded your image.
|
|
||||||
pub fn from_pixels(
|
|
||||||
width: u32,
|
|
||||||
height: u32,
|
|
||||||
pixels: impl AsRef<[u8]> + Send + Sync + 'static,
|
|
||||||
) -> Handle {
|
|
||||||
Self::from_data(Data::Rgba {
|
|
||||||
width,
|
|
||||||
height,
|
|
||||||
pixels: Bytes::new(pixels),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Creates an image [`Handle`] containing the image data directly.
|
|
||||||
///
|
///
|
||||||
/// Makes an educated guess about the image format by examining the given data.
|
/// Makes an educated guess about the image format by examining the given data.
|
||||||
///
|
///
|
||||||
/// This is useful if you already have your image loaded in-memory, maybe
|
/// This is useful if you already have your image loaded in-memory, maybe
|
||||||
/// because you downloaded or generated it procedurally.
|
/// because you downloaded or generated it procedurally.
|
||||||
pub fn from_memory(
|
pub fn from_bytes(bytes: impl Into<Bytes>) -> Handle {
|
||||||
bytes: impl AsRef<[u8]> + Send + Sync + 'static,
|
Self::Bytes(Id::unique(), bytes.into())
|
||||||
) -> Handle {
|
|
||||||
Self::from_data(Data::Bytes(Bytes::new(bytes)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn from_data(data: Data) -> Handle {
|
/// Creates an image [`Handle`] containing the decoded image pixels directly.
|
||||||
let mut hasher = FxHasher::default();
|
///
|
||||||
data.hash(&mut hasher);
|
/// This function expects the pixel data to be provided as a collection of [`Bytes`]
|
||||||
|
/// of RGBA pixels. Therefore, the length of the pixel data should always be
|
||||||
Handle {
|
/// `width * height * 4`.
|
||||||
id: hasher.finish(),
|
///
|
||||||
data,
|
/// This is useful if you have already decoded your image.
|
||||||
|
pub fn from_rgba(
|
||||||
|
width: u32,
|
||||||
|
height: u32,
|
||||||
|
pixels: impl Into<Bytes>,
|
||||||
|
) -> Handle {
|
||||||
|
Self::Rgba {
|
||||||
|
id: Id::unique(),
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
pixels: pixels.into(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the unique identifier of the [`Handle`].
|
/// Returns the unique identifier of the [`Handle`].
|
||||||
pub fn id(&self) -> u64 {
|
pub fn id(&self) -> Id {
|
||||||
self.id
|
match self {
|
||||||
}
|
Handle::Path(id, _)
|
||||||
|
| Handle::Bytes(id, _)
|
||||||
/// Returns a reference to the image [`Data`].
|
| Handle::Rgba { id, .. } => *id,
|
||||||
pub fn data(&self) -> &Data {
|
}
|
||||||
&self.data
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -80,93 +101,49 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Hash for Handle {
|
impl std::fmt::Debug for Handle {
|
||||||
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
|
|
||||||
self.id.hash(state);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A wrapper around raw image data.
|
|
||||||
///
|
|
||||||
/// It behaves like a `&[u8]`.
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct Bytes(Arc<dyn AsRef<[u8]> + Send + Sync + 'static>);
|
|
||||||
|
|
||||||
impl Bytes {
|
|
||||||
/// Creates new [`Bytes`] around `data`.
|
|
||||||
pub fn new(data: impl AsRef<[u8]> + Send + Sync + 'static) -> Self {
|
|
||||||
Self(Arc::new(data))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::fmt::Debug for Bytes {
|
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
||||||
self.0.as_ref().as_ref().fmt(f)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::hash::Hash for Bytes {
|
|
||||||
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
|
|
||||||
self.0.as_ref().as_ref().hash(state);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl PartialEq for Bytes {
|
|
||||||
fn eq(&self, other: &Self) -> bool {
|
|
||||||
let a = self.as_ref();
|
|
||||||
let b = other.as_ref();
|
|
||||||
core::ptr::eq(a, b) || a == b
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Eq for Bytes {}
|
|
||||||
|
|
||||||
impl AsRef<[u8]> for Bytes {
|
|
||||||
fn as_ref(&self) -> &[u8] {
|
|
||||||
self.0.as_ref().as_ref()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::ops::Deref for Bytes {
|
|
||||||
type Target = [u8];
|
|
||||||
|
|
||||||
fn deref(&self) -> &[u8] {
|
|
||||||
self.0.as_ref().as_ref()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The data of a raster image.
|
|
||||||
#[derive(Clone, PartialEq, Eq, Hash)]
|
|
||||||
pub enum Data {
|
|
||||||
/// File data
|
|
||||||
Path(PathBuf),
|
|
||||||
|
|
||||||
/// In-memory data
|
|
||||||
Bytes(Bytes),
|
|
||||||
|
|
||||||
/// Decoded image pixels in RGBA format.
|
|
||||||
Rgba {
|
|
||||||
/// The width of the image.
|
|
||||||
width: u32,
|
|
||||||
/// The height of the image.
|
|
||||||
height: u32,
|
|
||||||
/// The pixels.
|
|
||||||
pixels: Bytes,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::fmt::Debug for Data {
|
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
match self {
|
match self {
|
||||||
Data::Path(path) => write!(f, "Path({path:?})"),
|
Self::Path(_, path) => write!(f, "Path({path:?})"),
|
||||||
Data::Bytes(_) => write!(f, "Bytes(...)"),
|
Self::Bytes(_, _) => write!(f, "Bytes(...)"),
|
||||||
Data::Rgba { width, height, .. } => {
|
Self::Rgba { width, height, .. } => {
|
||||||
write!(f, "Pixels({width} * {height})")
|
write!(f, "Pixels({width} * {height})")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// The unique identifier of some [`Handle`] data.
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
pub struct Id(_Id);
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
|
enum _Id {
|
||||||
|
Unique(u64),
|
||||||
|
Hash(u64),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Id {
|
||||||
|
fn unique() -> Self {
|
||||||
|
use std::sync::atomic::{self, AtomicU64};
|
||||||
|
|
||||||
|
static NEXT_ID: AtomicU64 = AtomicU64::new(0);
|
||||||
|
|
||||||
|
Self(_Id::Unique(NEXT_ID.fetch_add(1, atomic::Ordering::Relaxed)))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn path(path: impl AsRef<Path>) -> Self {
|
||||||
|
let hash = {
|
||||||
|
let mut hasher = FxHasher::default();
|
||||||
|
path.as_ref().hash(&mut hasher);
|
||||||
|
|
||||||
|
hasher.finish()
|
||||||
|
};
|
||||||
|
|
||||||
|
Self(_Id::Hash(hash))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Image filtering strategy.
|
/// Image filtering strategy.
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
|
||||||
pub enum FilterMethod {
|
pub enum FilterMethod {
|
||||||
|
|
@ -184,7 +161,7 @@ pub trait Renderer: crate::Renderer {
|
||||||
/// The image Handle to be displayed. Iced exposes its own default implementation of a [`Handle`]
|
/// The image Handle to be displayed. Iced exposes its own default implementation of a [`Handle`]
|
||||||
///
|
///
|
||||||
/// [`Handle`]: Self::Handle
|
/// [`Handle`]: Self::Handle
|
||||||
type Handle: Clone + Hash;
|
type Handle: Clone;
|
||||||
|
|
||||||
/// Returns the dimensions of an image for the given [`Handle`].
|
/// Returns the dimensions of an image for the given [`Handle`].
|
||||||
fn measure_image(&self, handle: &Self::Handle) -> Size<u32>;
|
fn measure_image(&self, handle: &Self::Handle) -> Size<u32>;
|
||||||
|
|
|
||||||
|
|
@ -188,7 +188,7 @@ impl Pokemon {
|
||||||
{
|
{
|
||||||
let bytes = reqwest::get(&url).await?.bytes().await?;
|
let bytes = reqwest::get(&url).await?.bytes().await?;
|
||||||
|
|
||||||
Ok(image::Handle::from_memory(bytes))
|
Ok(image::Handle::from_bytes(bytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(target_arch = "wasm32")]
|
#[cfg(target_arch = "wasm32")]
|
||||||
|
|
|
||||||
|
|
@ -109,7 +109,7 @@ impl Example {
|
||||||
fn view(&self) -> Element<'_, Message> {
|
fn view(&self) -> Element<'_, Message> {
|
||||||
let image: Element<Message> = if let Some(screenshot) = &self.screenshot
|
let image: Element<Message> = if let Some(screenshot) = &self.screenshot
|
||||||
{
|
{
|
||||||
image(image::Handle::from_pixels(
|
image(image::Handle::from_rgba(
|
||||||
screenshot.size.width,
|
screenshot.size.width,
|
||||||
screenshot.size.height,
|
screenshot.size.height,
|
||||||
screenshot.clone(),
|
screenshot.clone(),
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,8 @@ impl Image {
|
||||||
/// [`Handle`]: image::Handle
|
/// [`Handle`]: image::Handle
|
||||||
pub fn load(
|
pub fn load(
|
||||||
handle: &image::Handle,
|
handle: &image::Handle,
|
||||||
) -> ::image::ImageResult<::image::DynamicImage> {
|
) -> ::image::ImageResult<::image::ImageBuffer<::image::Rgba<u8>, image::Bytes>>
|
||||||
|
{
|
||||||
use bitflags::bitflags;
|
use bitflags::bitflags;
|
||||||
|
|
||||||
bitflags! {
|
bitflags! {
|
||||||
|
|
@ -100,8 +101,8 @@ pub fn load(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
match handle.data() {
|
let (width, height, pixels) = match handle {
|
||||||
image::Data::Path(path) => {
|
image::Handle::Path(_, path) => {
|
||||||
let image = ::image::open(path)?;
|
let image = ::image::open(path)?;
|
||||||
|
|
||||||
let operation = std::fs::File::open(path)
|
let operation = std::fs::File::open(path)
|
||||||
|
|
@ -110,33 +111,44 @@ pub fn load(
|
||||||
.and_then(|mut reader| Operation::from_exif(&mut reader).ok())
|
.and_then(|mut reader| Operation::from_exif(&mut reader).ok())
|
||||||
.unwrap_or_else(Operation::empty);
|
.unwrap_or_else(Operation::empty);
|
||||||
|
|
||||||
Ok(operation.perform(image))
|
let rgba = operation.perform(image).into_rgba8();
|
||||||
|
|
||||||
|
(
|
||||||
|
rgba.width(),
|
||||||
|
rgba.height(),
|
||||||
|
image::Bytes::from(rgba.into_raw()),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
image::Data::Bytes(bytes) => {
|
image::Handle::Bytes(_, bytes) => {
|
||||||
let image = ::image::load_from_memory(bytes)?;
|
let image = ::image::load_from_memory(bytes)?;
|
||||||
let operation =
|
let operation =
|
||||||
Operation::from_exif(&mut std::io::Cursor::new(bytes))
|
Operation::from_exif(&mut std::io::Cursor::new(bytes))
|
||||||
.ok()
|
.ok()
|
||||||
.unwrap_or_else(Operation::empty);
|
.unwrap_or_else(Operation::empty);
|
||||||
|
|
||||||
Ok(operation.perform(image))
|
let rgba = operation.perform(image).into_rgba8();
|
||||||
|
|
||||||
|
(
|
||||||
|
rgba.width(),
|
||||||
|
rgba.height(),
|
||||||
|
image::Bytes::from(rgba.into_raw()),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
image::Data::Rgba {
|
image::Handle::Rgba {
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
pixels,
|
pixels,
|
||||||
} => {
|
..
|
||||||
if let Some(image) =
|
} => (*width, *height, pixels.clone()),
|
||||||
::image::ImageBuffer::from_vec(*width, *height, pixels.to_vec())
|
};
|
||||||
{
|
|
||||||
Ok(::image::DynamicImage::ImageRgba8(image))
|
if let Some(image) = ::image::ImageBuffer::from_raw(width, height, pixels) {
|
||||||
} else {
|
Ok(image)
|
||||||
Err(::image::error::ImageError::Limits(
|
} else {
|
||||||
::image::error::LimitError::from_kind(
|
Err(::image::error::ImageError::Limits(
|
||||||
::image::error::LimitErrorKind::DimensionError,
|
::image::error::LimitError::from_kind(
|
||||||
),
|
::image::error::LimitErrorKind::DimensionError,
|
||||||
))
|
),
|
||||||
}
|
))
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ debug = []
|
||||||
multi-window = []
|
multi-window = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
bytes.workspace = true
|
||||||
iced_core.workspace = true
|
iced_core.workspace = true
|
||||||
iced_futures.workspace = true
|
iced_futures.workspace = true
|
||||||
iced_futures.features = ["thread-pool"]
|
iced_futures.features = ["thread-pool"]
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
//! Take screenshots of a window.
|
//! Take screenshots of a window.
|
||||||
use crate::core::{Rectangle, Size};
|
use crate::core::{Rectangle, Size};
|
||||||
|
|
||||||
|
use bytes::Bytes;
|
||||||
use std::fmt::{Debug, Formatter};
|
use std::fmt::{Debug, Formatter};
|
||||||
use std::sync::Arc;
|
|
||||||
|
|
||||||
/// Data of a screenshot, captured with `window::screenshot()`.
|
/// Data of a screenshot, captured with `window::screenshot()`.
|
||||||
///
|
///
|
||||||
|
|
@ -10,7 +10,7 @@ use std::sync::Arc;
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Screenshot {
|
pub struct Screenshot {
|
||||||
/// The bytes of the [`Screenshot`].
|
/// The bytes of the [`Screenshot`].
|
||||||
pub bytes: Arc<Vec<u8>>,
|
pub bytes: Bytes,
|
||||||
/// The size of the [`Screenshot`].
|
/// The size of the [`Screenshot`].
|
||||||
pub size: Size<u32>,
|
pub size: Size<u32>,
|
||||||
}
|
}
|
||||||
|
|
@ -28,9 +28,9 @@ impl Debug for Screenshot {
|
||||||
|
|
||||||
impl Screenshot {
|
impl Screenshot {
|
||||||
/// Creates a new [`Screenshot`].
|
/// Creates a new [`Screenshot`].
|
||||||
pub fn new(bytes: Vec<u8>, size: Size<u32>) -> Self {
|
pub fn new(bytes: impl Into<Bytes>, size: Size<u32>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
bytes: Arc::new(bytes),
|
bytes: bytes.into(),
|
||||||
size,
|
size,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -68,7 +68,7 @@ impl Screenshot {
|
||||||
);
|
);
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
bytes: Arc::new(chopped),
|
bytes: Bytes::from(chopped),
|
||||||
size: Size::new(region.width, region.height),
|
size: Size::new(region.width, region.height),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
@ -80,6 +80,12 @@ impl AsRef<[u8]> for Screenshot {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<Screenshot> for Bytes {
|
||||||
|
fn from(screenshot: Screenshot) -> Self {
|
||||||
|
screenshot.bytes
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
#[derive(Debug, thiserror::Error)]
|
||||||
/// Errors that can occur when cropping a [`Screenshot`].
|
/// Errors that can occur when cropping a [`Screenshot`].
|
||||||
pub enum CropError {
|
pub enum CropError {
|
||||||
|
|
|
||||||
|
|
@ -71,8 +71,8 @@ impl Pipeline {
|
||||||
|
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
struct Cache {
|
struct Cache {
|
||||||
entries: FxHashMap<u64, Option<Entry>>,
|
entries: FxHashMap<raster::Id, Option<Entry>>,
|
||||||
hits: FxHashSet<u64>,
|
hits: FxHashSet<raster::Id>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Cache {
|
impl Cache {
|
||||||
|
|
@ -83,7 +83,7 @@ impl Cache {
|
||||||
let id = handle.id();
|
let id = handle.id();
|
||||||
|
|
||||||
if let hash_map::Entry::Vacant(entry) = self.entries.entry(id) {
|
if let hash_map::Entry::Vacant(entry) = self.entries.entry(id) {
|
||||||
let image = graphics::image::load(handle).ok()?.into_rgba8();
|
let image = graphics::image::load(handle).ok()?;
|
||||||
|
|
||||||
let mut buffer =
|
let mut buffer =
|
||||||
vec![0u32; image.width() as usize * image.height() as usize];
|
vec![0u32; image.width() as usize * image.height() as usize];
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ use rustc_hash::{FxHashMap, FxHashSet};
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum Memory {
|
pub enum Memory {
|
||||||
/// Image data on host
|
/// Image data on host
|
||||||
Host(image_rs::ImageBuffer<image_rs::Rgba<u8>, Vec<u8>>),
|
Host(image_rs::ImageBuffer<image_rs::Rgba<u8>, image::Bytes>),
|
||||||
/// Storage entry
|
/// Storage entry
|
||||||
Device(atlas::Entry),
|
Device(atlas::Entry),
|
||||||
/// Image not found
|
/// Image not found
|
||||||
|
|
@ -38,8 +38,8 @@ impl Memory {
|
||||||
/// Caches image raster data
|
/// Caches image raster data
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct Cache {
|
pub struct Cache {
|
||||||
map: FxHashMap<u64, Memory>,
|
map: FxHashMap<image::Id, Memory>,
|
||||||
hits: FxHashSet<u64>,
|
hits: FxHashSet<image::Id>,
|
||||||
should_trim: bool,
|
should_trim: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -51,7 +51,7 @@ impl Cache {
|
||||||
}
|
}
|
||||||
|
|
||||||
let memory = match graphics::image::load(handle) {
|
let memory = match graphics::image::load(handle) {
|
||||||
Ok(image) => Memory::Host(image.to_rgba8()),
|
Ok(image) => Memory::Host(image),
|
||||||
Err(image_rs::error::ImageError::IoError(_)) => Memory::NotFound,
|
Err(image_rs::error::ImageError::IoError(_)) => Memory::NotFound,
|
||||||
Err(_) => Memory::Invalid,
|
Err(_) => Memory::Invalid,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,6 @@ use crate::core::{
|
||||||
ContentFit, Element, Layout, Length, Rectangle, Size, Vector, Widget,
|
ContentFit, Element, Layout, Length, Rectangle, Size, Vector, Widget,
|
||||||
};
|
};
|
||||||
|
|
||||||
use std::hash::Hash;
|
|
||||||
|
|
||||||
pub use image::{FilterMethod, Handle};
|
pub use image::{FilterMethod, Handle};
|
||||||
|
|
||||||
/// Creates a new [`Viewer`] with the given image `Handle`.
|
/// Creates a new [`Viewer`] with the given image `Handle`.
|
||||||
|
|
@ -128,7 +126,7 @@ pub fn draw<Renderer, Handle>(
|
||||||
filter_method: FilterMethod,
|
filter_method: FilterMethod,
|
||||||
) where
|
) where
|
||||||
Renderer: image::Renderer<Handle = Handle>,
|
Renderer: image::Renderer<Handle = Handle>,
|
||||||
Handle: Clone + Hash,
|
Handle: Clone,
|
||||||
{
|
{
|
||||||
let Size { width, height } = renderer.measure_image(handle);
|
let Size { width, height } = renderer.measure_image(handle);
|
||||||
let image_size = Size::new(width as f32, height as f32);
|
let image_size = Size::new(width as f32, height as f32);
|
||||||
|
|
@ -167,7 +165,7 @@ impl<Message, Theme, Renderer, Handle> Widget<Message, Theme, Renderer>
|
||||||
for Image<Handle>
|
for Image<Handle>
|
||||||
where
|
where
|
||||||
Renderer: image::Renderer<Handle = Handle>,
|
Renderer: image::Renderer<Handle = Handle>,
|
||||||
Handle: Clone + Hash,
|
Handle: Clone,
|
||||||
{
|
{
|
||||||
fn size(&self) -> Size<Length> {
|
fn size(&self) -> Size<Length> {
|
||||||
Size {
|
Size {
|
||||||
|
|
@ -216,7 +214,7 @@ impl<'a, Message, Theme, Renderer, Handle> From<Image<Handle>>
|
||||||
for Element<'a, Message, Theme, Renderer>
|
for Element<'a, Message, Theme, Renderer>
|
||||||
where
|
where
|
||||||
Renderer: image::Renderer<Handle = Handle>,
|
Renderer: image::Renderer<Handle = Handle>,
|
||||||
Handle: Clone + Hash + 'a,
|
Handle: Clone + 'a,
|
||||||
{
|
{
|
||||||
fn from(image: Image<Handle>) -> Element<'a, Message, Theme, Renderer> {
|
fn from(image: Image<Handle>) -> Element<'a, Message, Theme, Renderer> {
|
||||||
Element::new(image)
|
Element::new(image)
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ use crate::core::{
|
||||||
Vector, Widget,
|
Vector, Widget,
|
||||||
};
|
};
|
||||||
|
|
||||||
use std::hash::Hash;
|
|
||||||
|
|
||||||
/// A frame that displays an image with the ability to zoom in/out and pan.
|
/// A frame that displays an image with the ability to zoom in/out and pan.
|
||||||
#[allow(missing_debug_implementations)]
|
#[allow(missing_debug_implementations)]
|
||||||
pub struct Viewer<Handle> {
|
pub struct Viewer<Handle> {
|
||||||
|
|
@ -94,7 +92,7 @@ impl<Message, Theme, Renderer, Handle> Widget<Message, Theme, Renderer>
|
||||||
for Viewer<Handle>
|
for Viewer<Handle>
|
||||||
where
|
where
|
||||||
Renderer: image::Renderer<Handle = Handle>,
|
Renderer: image::Renderer<Handle = Handle>,
|
||||||
Handle: Clone + Hash,
|
Handle: Clone,
|
||||||
{
|
{
|
||||||
fn tag(&self) -> tree::Tag {
|
fn tag(&self) -> tree::Tag {
|
||||||
tree::Tag::of::<State>()
|
tree::Tag::of::<State>()
|
||||||
|
|
@ -401,7 +399,7 @@ impl<'a, Message, Theme, Renderer, Handle> From<Viewer<Handle>>
|
||||||
where
|
where
|
||||||
Renderer: 'a + image::Renderer<Handle = Handle>,
|
Renderer: 'a + image::Renderer<Handle = Handle>,
|
||||||
Message: 'a,
|
Message: 'a,
|
||||||
Handle: Clone + Hash + 'a,
|
Handle: Clone + 'a,
|
||||||
{
|
{
|
||||||
fn from(viewer: Viewer<Handle>) -> Element<'a, Message, Theme, Renderer> {
|
fn from(viewer: Viewer<Handle>) -> Element<'a, Message, Theme, Renderer> {
|
||||||
Element::new(viewer)
|
Element::new(viewer)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue