Are there image processing modules for Python 3?

前端 未结 2 1680
你的背包
你的背包 2020-12-11 14:54

I am facing an image processing task, and I\'m using Python 3.2 (on a 64-bit Windows system). All my searches for image processing libraries have come up with are libraries

相关标签:
2条回答
  • 2020-12-11 15:53

    You can get a source version of PIL which will compile on python3.1 here:

    https://github.com/sloonz/pil-py3k

    also binary installer for 3.2 and 64-bit windows here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#pil

    ref: Image library for Python 3

    0 讨论(0)
  • 2020-12-11 15:53

    The world is changing and everyone seem to be moving to a brand new library: Pillow. It is a drop-in replacement for PIL but it is alive and does support Python 3.

    0 讨论(0)
提交回复
热议问题