1
1
use std:: path:: { Path , PathBuf } ;
2
+ use std:: sync:: Arc ;
2
3
use svg2pdf:: { ConversionOptions , PageOptions } ;
3
4
4
5
pub fn convert_ (
@@ -11,23 +12,24 @@ pub fn convert_(
11
12
log:: set_max_level ( log:: LevelFilter :: Warn ) ;
12
13
}
13
14
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
+
14
24
#[ 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
+ } ;
16
29
17
30
#[ cfg( not( feature = "text" ) ) ]
18
31
let options = usvg:: Options :: default ( ) ;
19
32
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
-
31
33
// Convert the file.
32
34
let name = Path :: new ( input. file_name ( ) . ok_or ( "Input path does not point to a file" ) ?) ;
33
35
let output = output. unwrap_or_else ( || name. with_extension ( "pdf" ) ) ;
0 commit comments