/resvg-python

A python-bind of resvg (cairosvg alternative)

Primary LanguageRust

Build

python3 -m venv .venv
source ./.venv/bin/activate
pip install maturin
maturin build

Install

pip install resvg_python
import resvg_python

with open("example.svg", "r") as svg_string:
  png_image_bytes = resvg_python.svg_to_png(svg_string)