Skip to content
This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
/ text2svg Public archive

Use Pango, Cairo to get text and render to SVG file using Python.

License

Notifications You must be signed in to change notification settings

naveen521kk/text2svg

Repository files navigation

Text2SVG

GitHub license GitHub issues PyPI PyPI - Format PyPI - Status GitHub Release Date pre-commit hook

Build Wheels

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.

Installation

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.

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

Documentation is located at https://text2svg.syrusdark.website

LICENSE

This project along with its documentation is licensed under GPL-v3. See LICENSE for details.