All Projects → petercollingridge → DrawSVG

petercollingridge / DrawSVG

Licence: other
Python module to generate SVG files

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Python module to create SVG files.
Add to /usr/lib/python2.7/ for easy use.

Draw a basic rectangle:

 from DrawSVG import SVG
 mySVG = SVG()
 
 mySVG.addChildElement('rect', {'x':20, 'y':20, 'width':60, 'height':20})
 mySVG.write('test.svg')

For more information, see the wiki:
https://github.com/petercollingridge/DrawSVG/wiki
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].