#svg #render #raster

deprecated bin+lib resvg-raqote

[DEPRECATED] use the resvg crate instead

2 releases

0.10.1 Jul 4, 2020
0.10.0 Jun 19, 2020

#41 in #raster

23 downloads per month

MPL-2.0 license

705KB
17K SLoC

raqote backend for resvg

resvg backend implementation using the raqote library.

Warning: the raqote library is still in development and pretty unstable. You should prefer other backends.

This backend intentionally doesn't provide a C API.

Build

Right now, this is the only backend that uses Rust-based 2D library, therefore building process is fairly straightforward.

Sadly, you still need a C++ compiler to build harfbuzz.

on Windows using MSVC

Install stable-x86_64-pc-windows-msvc Rust target.

Build using x64 Native Tools Command Prompt for VS 2017 shell:

set PATH=%userprofile%\.cargo\bin;%PATH%
rustup.exe default stable-x86_64-pc-windows-msvc

cargo.exe build --release

on Windows using MSYS2

Install stable-x86_64-pc-windows-gnu Rust target. And then:

pacman -S mingw-w64-x86_64-gcc
rustup default stable-x86_64-pc-windows-gnu

cargo build --release

You can use i686 target in the same way.

on Linux

Install harfbuzz using your distributive's package manager.

On Ubuntu you can install it via:

sudo apt install libharfbuzz-dev

Build resvg:

cargo build --release

on macOS

cargo build --release

Runtime dependencies

harfbuzz on Linux. On other OS'es it will be built statically.

Running resvg CLI

cargo run --release -- in.svg out.png

The resulting binary can be found at: target/release/resvg-raqote

Running examples

A simple SVG to PNG converter:

cargo run --example minimal -- in.svg out.png

Render image using a manually constructed SVG render tree:

cargo run --example custom_rtree

Draw bounding boxes around all shapes on input SVG:

cargo run --example draw_bboxes -- bboxes.svg bboxes.png -z 4

License

MPLv2.0.

Dependencies

~4.5–6.5MB
~107K SLoC