├── LICENSE ├── README.md ├── bin └── jbig2dec.exe ├── core ├── __init__.py ├── constants.py ├── document.py ├── resources.py └── surface.py ├── ofd_test.py ├── requirements.txt └── test.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/README.md -------------------------------------------------------------------------------- /bin/jbig2dec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/bin/jbig2dec.exe -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/core/constants.py -------------------------------------------------------------------------------- /core/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/core/document.py -------------------------------------------------------------------------------- /core/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/core/resources.py -------------------------------------------------------------------------------- /core/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/core/surface.py -------------------------------------------------------------------------------- /ofd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/ofd_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | defusedxml 2 | cssselect2 3 | pillow 4 | -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geniusnut/ofd2img/HEAD/test.png --------------------------------------------------------------------------------