svg2pdf

Build status Current crates.io release Documentation

Convert SVG files to PDFs.

This crate allows to convert static (i.e. non-interactive) SVG files to either standalone PDF files or Form XObjects that can be embedded in another PDF file and used just like images.

The conversion will translate the SVG content to PDF without rasterizing it, so no quality is lost.

Example

This example reads an SVG file and writes the corresponding PDF back to the disk.

```rust let svg = std::fs::readtostring("tests/example.svg").unwrap();

// This can only fail if the SVG is malformed. This one is not. let pdf = svg2pdf::convert_str(&svg, svg2pdf::Options::default()).unwrap();

// ... and now you have a Vec which you could write to a file or // transmit over the network! std::fs::write("target/example.pdf", pdf).unwrap(); ```

Supported features

Filters are not currently supported and embedded raster images are not color managed. Instead, they use PDF's DeviceRGB color space.

Contributing

We are looking forward to receiving your bugs and feature requests in the Issues tab. We would also be very happy to accept PRs for bug fixes, features, or refactorings!

If you want to contribute but are uncertain where to start, yo could look into filters like feBlend and feColorMatrix that can be implemented with transparency groups and color spaces, respectively. We'd be happy to assist you with your PR's, so feel free to post Work in Progress PRs if marked as such. Please be kind to the maintainers and other contributors. If you feel that there are any problems, please feel free to reach out to us privately.

Thanks to each and every prospective contributor for the effort you (plan to) invest in this project and for adopting it!

License

svg2pdf is licensed under a MIT / Apache 2.0 dual license.

Users and consumers of the library may choose which of those licenses they want to apply whereas contributors have to accept that their code is in compliance and distributed under the terms of both of these licenses.