Skip to content

Commit e69f94e

Browse files
committed
minor fixes
1 parent ea54b49 commit e69f94e

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

cli/src/convert.rs

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use std::path::{Path, PathBuf};
2+
use std::sync::Arc;
23
use svg2pdf::{ConversionOptions, PageOptions};
34

45
pub fn convert_(
@@ -11,23 +12,24 @@ pub fn convert_(
1112
log::set_max_level(log::LevelFilter::Warn);
1213
}
1314

15+
let mut fontdb = fontdb::Database::new();
16+
fontdb.load_system_fonts();
17+
18+
fontdb.set_serif_family("Times New Roman");
19+
fontdb.set_sans_serif_family("Arial");
20+
fontdb.set_cursive_family("Comic Sans MS");
21+
fontdb.set_fantasy_family("Impact");
22+
fontdb.set_monospace_family("Courier New");
23+
1424
#[cfg(feature = "text")]
15-
let mut options = usvg::Options::default();
25+
let mut options = usvg::Options {
26+
fontdb: Arc::new(fontdb),
27+
..usvg::Options::default()
28+
};
1629

1730
#[cfg(not(feature = "text"))]
1831
let options = usvg::Options::default();
1932

20-
#[cfg(feature = "text")]
21-
{
22-
options.fontdb_mut().load_system_fonts();
23-
24-
options.fontdb_mut().set_serif_family("Times New Roman");
25-
options.fontdb_mut().set_sans_serif_family("Arial");
26-
options.fontdb_mut().set_cursive_family("Comic Sans MS");
27-
options.fontdb_mut().set_fantasy_family("Impact");
28-
options.fontdb_mut().set_monospace_family("Courier New");
29-
}
30-
3133
// Convert the file.
3234
let name = Path::new(input.file_name().ok_or("Input path does not point to a file")?);
3335
let output = output.unwrap_or_else(|| name.with_extension("pdf"));

tests/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ fn is_pix_diff(pixel1: &Rgba<u8>, pixel2: &Rgba<u8>) -> bool {
109109
|| pixel1.0[3] != pixel2.0[3]
110110
}
111111

112-
const REPLACE: bool = true;
112+
const REPLACE: bool = false;
113113
const PDF: bool = false;
114114

115115
pub fn get_diff(

0 commit comments

Comments
 (0)