SVG
The package provides an SVG composer and parser.
Example: Composing
use Document;
use Path;
use Data;
let data = new
.move_to
.line_by
.line_by
.line_by
.close;
let path = new
.set
.set
.set
.set;
let document = new
.set
.add;
save.unwrap;
Example: Parsing
use ;
use Path;
use Event;
let path = "image.svg";
let mut content = String new;
for event in open.unwrap
Contribution
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.