blob: 4c992994b893d9e07135a023c6ba5c52f2852411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
use cairo;
use rsvg;
use std::fs::File;
use std::io::BufWriter;
use std::process;
fn main() {
let args = std::env::args_os();
if args.len() != 5 {
eprintln!("usage: render <input.svg> <width> <height> <output.png>");
process::exit(1);
}
let mut args = args.skip(1);
let input = args.next().unwrap();
let width_os = args.next().unwrap();
let height_os = args.next().unwrap();
let output = args.next().unwrap();
let width_s = width_os.to_str().unwrap();
let height_s = height_os.to_str().unwrap();
let width: i32 = width_s.parse().unwrap();
let height: i32 = height_s.parse().unwrap();
assert!(width > 0 && height > 0);
let handle = match rsvg::Loader::new().read_path(input) {
Ok(handle) => handle,
Err(e) => {
eprintln!("loading error: {}", e);
process::exit(1);
}
};
let renderer = rsvg::CairoRenderer::new(&handle);
let surface = cairo::ImageSurface::create(cairo::Format::ARgb32, width, height).unwrap();
let cr = cairo::Context::new(&surface).expect("Failed to create a cairo context");
let res = renderer.render_document(
&cr,
&cairo::Rectangle::new(0.0, 0.0, f64::from(width), f64::from(height)),
);
match res {
Ok(()) => {
let mut file = BufWriter::new(File::create(output).unwrap());
surface.write_to_png(&mut file).unwrap();
}
Err(e) => {
eprintln!("rendering error: {}", e);
process::exit(1);
}
}
}
|