Utilize bytes::Bytes iced_runtime:🪟:Screenshot

This commit is contained in:
Thomas Sieverding 2024-04-07 18:36:47 -07:00 committed by Héctor Ramón Jiménez
parent 8d27af24a7
commit 7c084d9695
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 12 additions and 5 deletions

View file

@ -18,6 +18,7 @@ debug = []
multi-window = []
[dependencies]
bytes.workspace = true
iced_core.workspace = true
iced_futures.workspace = true
iced_futures.features = ["thread-pool"]

View file

@ -1,8 +1,8 @@
//! Take screenshots of a window.
use crate::core::{Rectangle, Size};
use bytes::Bytes;
use std::fmt::{Debug, Formatter};
use std::sync::Arc;
/// Data of a screenshot, captured with `window::screenshot()`.
///
@ -10,7 +10,7 @@ use std::sync::Arc;
#[derive(Clone)]
pub struct Screenshot {
/// The bytes of the [`Screenshot`].
pub bytes: Arc<Vec<u8>>,
pub bytes: Bytes,
/// The size of the [`Screenshot`].
pub size: Size<u32>,
}
@ -28,9 +28,9 @@ impl Debug for Screenshot {
impl 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 {
bytes: Arc::new(bytes),
bytes: bytes.into(),
size,
}
}
@ -68,7 +68,7 @@ impl Screenshot {
);
Ok(Self {
bytes: Arc::new(chopped),
bytes: Bytes::from(chopped),
size: Size::new(region.width, region.height),
})
}
@ -80,6 +80,12 @@ impl AsRef<[u8]> for Screenshot {
}
}
impl Into<Bytes> for Screenshot {
fn into(self) -> Bytes {
self.bytes
}
}
#[derive(Debug, thiserror::Error)]
/// Errors that can occur when cropping a [`Screenshot`].
pub enum CropError {