├── .gitattributes ├── .gitignore ├── ChangeLog ├── DESCRIPTION ├── LICENSE ├── README ├── docs ├── Makedoc.py ├── Makefile ├── colors.css ├── index.html.in ├── layout.css ├── mainmenu.html.in ├── roadmap.html.in ├── screenshots.html.in └── template.html.in ├── pyemf3 ├── __init__.py ├── const.py ├── dc.py ├── emf.py ├── emr.py └── field.py ├── setup.py └── tests ├── orig ├── test-1.emf ├── test-arc-chord-pie.emf ├── test-deleteobject.emf ├── test-drawing1.emf ├── test-fontbackground.emf ├── test-optimize16bit.emf ├── test-paths1.emf ├── test-poly1.emf ├── test-poly2.emf ├── test-polyline1.emf ├── test-selectclippath1.emf ├── test-setpixel.emf ├── test-stockobject.emf ├── test-viewport-window-origin.emf └── test-worldtransform1.emf ├── test--compare-all.py ├── test--run-all.py ├── test-1.py ├── test-arc-chord-pie.py ├── test-deleteobject.py ├── test-drawing1.py ├── test-fontbackground.py ├── test-matplotlib1.py ├── test-matplotlib2.py ├── test-optimize16bit.py ├── test-paths1.py ├── test-poly1.py ├── test-poly2.py ├── test-polyline1.py ├── test-selectclippath1.py ├── test-setpixel.py ├── test-stockobject.py ├── test-viewport-window-origin.py └── test-worldtransform1.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.emf binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | *~ 4 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/README -------------------------------------------------------------------------------- /docs/Makedoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/Makedoc.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/colors.css -------------------------------------------------------------------------------- /docs/index.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/index.html.in -------------------------------------------------------------------------------- /docs/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/layout.css -------------------------------------------------------------------------------- /docs/mainmenu.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/mainmenu.html.in -------------------------------------------------------------------------------- /docs/roadmap.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/roadmap.html.in -------------------------------------------------------------------------------- /docs/screenshots.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/screenshots.html.in -------------------------------------------------------------------------------- /docs/template.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/docs/template.html.in -------------------------------------------------------------------------------- /pyemf3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/pyemf3/__init__.py -------------------------------------------------------------------------------- /pyemf3/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/pyemf3/const.py -------------------------------------------------------------------------------- /pyemf3/dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/pyemf3/dc.py -------------------------------------------------------------------------------- /pyemf3/emf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/pyemf3/emf.py -------------------------------------------------------------------------------- /pyemf3/emr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/pyemf3/emr.py -------------------------------------------------------------------------------- /pyemf3/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/pyemf3/field.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/orig/test-1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-1.emf -------------------------------------------------------------------------------- /tests/orig/test-arc-chord-pie.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-arc-chord-pie.emf -------------------------------------------------------------------------------- /tests/orig/test-deleteobject.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-deleteobject.emf -------------------------------------------------------------------------------- /tests/orig/test-drawing1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-drawing1.emf -------------------------------------------------------------------------------- /tests/orig/test-fontbackground.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-fontbackground.emf -------------------------------------------------------------------------------- /tests/orig/test-optimize16bit.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-optimize16bit.emf -------------------------------------------------------------------------------- /tests/orig/test-paths1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-paths1.emf -------------------------------------------------------------------------------- /tests/orig/test-poly1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-poly1.emf -------------------------------------------------------------------------------- /tests/orig/test-poly2.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-poly2.emf -------------------------------------------------------------------------------- /tests/orig/test-polyline1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-polyline1.emf -------------------------------------------------------------------------------- /tests/orig/test-selectclippath1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-selectclippath1.emf -------------------------------------------------------------------------------- /tests/orig/test-setpixel.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-setpixel.emf -------------------------------------------------------------------------------- /tests/orig/test-stockobject.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-stockobject.emf -------------------------------------------------------------------------------- /tests/orig/test-viewport-window-origin.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-viewport-window-origin.emf -------------------------------------------------------------------------------- /tests/orig/test-worldtransform1.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/orig/test-worldtransform1.emf -------------------------------------------------------------------------------- /tests/test--compare-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test--compare-all.py -------------------------------------------------------------------------------- /tests/test--run-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test--run-all.py -------------------------------------------------------------------------------- /tests/test-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-1.py -------------------------------------------------------------------------------- /tests/test-arc-chord-pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-arc-chord-pie.py -------------------------------------------------------------------------------- /tests/test-deleteobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-deleteobject.py -------------------------------------------------------------------------------- /tests/test-drawing1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-drawing1.py -------------------------------------------------------------------------------- /tests/test-fontbackground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-fontbackground.py -------------------------------------------------------------------------------- /tests/test-matplotlib1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-matplotlib1.py -------------------------------------------------------------------------------- /tests/test-matplotlib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-matplotlib2.py -------------------------------------------------------------------------------- /tests/test-optimize16bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-optimize16bit.py -------------------------------------------------------------------------------- /tests/test-paths1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-paths1.py -------------------------------------------------------------------------------- /tests/test-poly1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-poly1.py -------------------------------------------------------------------------------- /tests/test-poly2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-poly2.py -------------------------------------------------------------------------------- /tests/test-polyline1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-polyline1.py -------------------------------------------------------------------------------- /tests/test-selectclippath1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-selectclippath1.py -------------------------------------------------------------------------------- /tests/test-setpixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-setpixel.py -------------------------------------------------------------------------------- /tests/test-stockobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-stockobject.py -------------------------------------------------------------------------------- /tests/test-viewport-window-origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-viewport-window-origin.py -------------------------------------------------------------------------------- /tests/test-worldtransform1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysanders/pyemf3/HEAD/tests/test-worldtransform1.py --------------------------------------------------------------------------------