summaryrefslogtreecommitdiffstats
path: root/native/src/image.rs
diff options
context:
space:
mode:
authorLibravatar Ian Douglas Scott <idscott@system76.com>2022-10-03 15:53:39 -0700
committerLibravatar Ian Douglas Scott <idscott@system76.com>2022-10-03 15:58:43 -0700
commit6ce12fc0c60adbd169676ee985e8529831633a76 (patch)
treeb8e8953d3daf8d0d8c2077821e66542f1b14e4c6 /native/src/image.rs
parent5f758d847f7e0de0ab7134247133c169a6132de1 (diff)
downloadiced-6ce12fc0c60adbd169676ee985e8529831633a76.tar.gz
iced-6ce12fc0c60adbd169676ee985e8529831633a76.tar.bz2
iced-6ce12fc0c60adbd169676ee985e8529831633a76.zip
Use `Cow<'static, [u8]>` in image/svg, add constructors taking &[u8]`
This should resolve https://github.com/iced-rs/iced/issues/580 by providing a way to use an image included with `include_bytes!` without needing to copy it to a `Vec` to create an image handle. It would be nice if these methods could also be `const`, but that isn't possible due to the hashing being done. This is technically a breaking change since `Handle::data()` is public. But if that is used, it's most likely in used somewhere that only relies on the type derefing to `&[u8]`.
Diffstat (limited to 'native/src/image.rs')
-rw-r--r--native/src/image.rs31
1 files changed, 27 insertions, 4 deletions
diff --git a/native/src/image.rs b/native/src/image.rs
index 516eb2db..41e41aa4 100644
--- a/native/src/image.rs
+++ b/native/src/image.rs
@@ -1,6 +1,7 @@
//! Load and draw raster graphics.
use crate::{Hasher, Rectangle};
+use std::borrow::Cow;
use std::hash::{Hash, Hasher as _};
use std::path::PathBuf;
use std::sync::Arc;
@@ -29,7 +30,22 @@ impl Handle {
Self::from_data(Data::Pixels {
width,
height,
- pixels,
+ pixels: Cow::Owned(pixels),
+ })
+ }
+
+ /// Like [`Handle::from_pixels`], but from static pixel data.
+ ///
+ /// Useful for images included in binary, for instance with [`include_bytes!`].
+ pub fn from_static_pixels(
+ width: u32,
+ height: u32,
+ pixels: &'static [u8],
+ ) -> Handle {
+ Self::from_data(Data::Pixels {
+ width,
+ height,
+ pixels: Cow::Borrowed(pixels),
})
}
@@ -40,7 +56,14 @@ impl Handle {
/// This is useful if you already have your image loaded in-memory, maybe
/// because you downloaded or generated it procedurally.
pub fn from_memory(bytes: Vec<u8>) -> Handle {
- Self::from_data(Data::Bytes(bytes))
+ Self::from_data(Data::Bytes(Cow::Owned(bytes)))
+ }
+
+ /// Like [`Handle::from_memory`], but from static image data.
+ ///
+ /// Useful for images included in binary, for instance with [`include_bytes!`].
+ pub fn from_static_memory(bytes: &'static [u8]) -> Handle {
+ Self::from_data(Data::Bytes(Cow::Borrowed(bytes)))
}
fn from_data(data: Data) -> Handle {
@@ -86,7 +109,7 @@ pub enum Data {
Path(PathBuf),
/// In-memory data
- Bytes(Vec<u8>),
+ Bytes(Cow<'static, [u8]>),
/// Decoded image pixels in BGRA format.
Pixels {
@@ -95,7 +118,7 @@ pub enum Data {
/// The height of the image.
height: u32,
/// The pixels.
- pixels: Vec<u8>,
+ pixels: Cow<'static, [u8]>,
},
}