summaryrefslogtreecommitdiffstats
path: root/wgpu
diff options
context:
space:
mode:
authorLibravatar Jovansonlee Cesar <ivanceras@gmail.com>2024-09-14 05:43:00 +0800
committerLibravatar GitHub <noreply@github.com>2024-09-13 21:43:00 +0000
commit0c502801e359706a182f01da1465c17b15fa6c67 (patch)
tree9ab4c10b00086e358220e0a8b2d4e6465f0f9726 /wgpu
parente0da42efed23a8d5a664acb12a2c699147f2408a (diff)
downloadiced-0c502801e359706a182f01da1465c17b15fa6c67.tar.gz
iced-0c502801e359706a182f01da1465c17b15fa6c67.tar.bz2
iced-0c502801e359706a182f01da1465c17b15fa6c67.zip
Make rendering of svg that has text work out of the box (#2560)
* fix: load system fonts to usvg font_db, this will make rendering of text in svg that has it * feat: add an example that renders svg that has text on it * Initialize `fontdb` only once for `vector` images * Remove `svg_text` example * Set `fontdb` for `usvg::Options` in `tiny_skia::vector` --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev>
Diffstat (limited to 'wgpu')
-rw-r--r--wgpu/src/image/vector.rs30
1 files changed, 21 insertions, 9 deletions
diff --git a/wgpu/src/image/vector.rs b/wgpu/src/image/vector.rs
index 74e9924d..e55ade38 100644
--- a/wgpu/src/image/vector.rs
+++ b/wgpu/src/image/vector.rs
@@ -6,6 +6,7 @@ use resvg::tiny_skia;
use resvg::usvg;
use rustc_hash::{FxHashMap, FxHashSet};
use std::fs;
+use std::sync::Arc;
/// Entry in cache corresponding to an svg handle
pub enum Svg {
@@ -37,6 +38,7 @@ pub struct Cache {
svg_hits: FxHashSet<u64>,
rasterized_hits: FxHashSet<(u64, u32, u32, ColorFilter)>,
should_trim: bool,
+ fontdb: Option<Arc<usvg::fontdb::Database>>,
}
type ColorFilter = Option<[u8; 4]>;
@@ -48,23 +50,33 @@ impl Cache {
return self.svgs.get(&handle.id()).unwrap();
}
+ // TODO: Reuse `cosmic-text` font database
+ if self.fontdb.is_none() {
+ let mut fontdb = usvg::fontdb::Database::new();
+ fontdb.load_system_fonts();
+
+ self.fontdb = Some(Arc::new(fontdb));
+ }
+
+ let options = usvg::Options {
+ fontdb: self
+ .fontdb
+ .as_ref()
+ .expect("fontdb must be initialized")
+ .clone(),
+ ..usvg::Options::default()
+ };
+
let svg = match handle.data() {
svg::Data::Path(path) => fs::read_to_string(path)
.ok()
.and_then(|contents| {
- usvg::Tree::from_str(
- &contents,
- &usvg::Options::default(), // TODO: Set usvg::Options::fontdb
- )
- .ok()
+ usvg::Tree::from_str(&contents, &options).ok()
})
.map(Svg::Loaded)
.unwrap_or(Svg::NotFound),
svg::Data::Bytes(bytes) => {
- match usvg::Tree::from_data(
- bytes,
- &usvg::Options::default(), // TODO: Set usvg::Options::fontdb
- ) {
+ match usvg::Tree::from_data(bytes, &options) {
Ok(tree) => Svg::Loaded(tree),
Err(_) => Svg::NotFound,
}