This is a small wrapper aoung Pango and Cairo which allows you to enter a text and get you svg files ready. This is wrapped using Cython.
This will be archived until I find time to work on this.
For Windows and MacOS, wheels are provided which seems to be working. For linux it is not recommended to use the manylinux
wheels which was published to PyPi as it seems that it is working well. Instead you can install Pango and Cairo along with the header files for your package manage and run the below command
pip install --no-binary :all: text2svg
Other users, can directly install using pip,
pip install text2svg
and checking your installation by running the below example.
This is a small example on how it works.
>>> from text2svg import *
>>> info = TextInfo("Hello World","hello.svg",50,50)
>>> text2svg(info)
This will simply create a hello.svg
in the current working directory.
Documentation is located at https://text2svg.syrusdark.website
This project along with its documentation is licensed under GPL-v3. See LICENSE for details.