An open API service indexing awesome lists of open source software.

https://github.com/kingsdigitallab/kdu-jp2

Python library for batch conversion to JP2 using kdu_compress. Requires python3.
https://github.com/kingsdigitallab/kdu-jp2

conversion image jp2 python reusable

Last synced: 3 months ago
JSON representation

Python library for batch conversion to JP2 using kdu_compress. Requires python3.

Awesome Lists containing this project

README

        

Python library for batch conversion to JP2 using kdu_compress
=============================================================

Installation and Use
--------------------
#. Install the package: ``pip install kdu-jp2``
#. Import the library: ``from kdu_jp2 import JP2Converter``
#. Create an instance: ``converter = JP2Converter('in_dir', 'out_dir')``
#. Run the conversion: ``converter.convert()`` (lossy) or ``converter.convert(True)`` (lossless)

System requirements
-------------------

This depends on Kakadu - ``kdu_compress`` must be on your path.

.. _progressbar33: http://pythonhosted.org/progressbar33/