thorfdbg / libjpeg

A complete implementation of 10918-1 (JPEG) coming from jpeg.org (the ISO group) with extensions for HDR, lossless and alpha channel coding standardized as ISO/IEC 18477 (JPEG XT).
327 stars 81 forks source link

Use Python 3 print function instead #53

Closed grimmer0125 closed 3 years ago

grimmer0125 commented 3 years ago

I saw some syntax error about doxyfilter.py's python2 print when I cross-compile this library. Therefore I made this PR to use Python 3 print functionn. from __future__ import print_function will allow python 2 to run this script successfully.

thorfdbg commented 3 years ago

Thanks for your contribution. Just one question: The very same library is also published by ISO under a BSD type licence. Would it be acceptable for you to include your patch under a more liberal (non-GPL) license? Thank you - Thomas.

grimmer0125 commented 3 years ago

@thorfdbg Sure. It is totally acceptable.