Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apendua/dxf2svg
Basic DXF to SVG converter
https://github.com/apendua/dxf2svg
Last synced: 20 days ago
JSON representation
Basic DXF to SVG converter
- Host: GitHub
- URL: https://github.com/apendua/dxf2svg
- Owner: apendua
- Created: 2014-01-17T08:56:05.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T20:22:21.000Z (about 4 years ago)
- Last Synced: 2024-10-09T09:34:15.654Z (about 1 month ago)
- Language: Python
- Size: 4.88 KB
- Stars: 35
- Watchers: 4
- Forks: 24
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dxf2svg
Basic DXF to SVG converter.
## Usage
The only non-standard dependency is `dxfgrabber`.
If you dan't have it already, please install with
your favourite package manager, e.g.
```
pip install dxfgrabber
```
When it's done, you should be able to do things like:
```
python dxf2svg.py myDxfFile.dxf
```
Please note that currently suported types are only `LINE`, `LWPOLYLINE`, `CIRCLE` and `ARC`.
There is no support for block instances yet, though it should be quite easy to implement.## TODO
* Add support for other entity types.
* Add support for block instances.
* Add support for line thickness and color.
* Add some example files.