0

Possible Duplicate:
Image Processing, In Python?

There is a Python module for image processing?

I would like to analyze, modify and create other images.

Community
  • 1
  • 1
Figus
  • 681
  • 1
  • 7
  • 13
  • 1
    One can also search on SO: http://stackoverflow.com/questions/94875/image-processing-in-python , http://stackoverflow.com/questions/4641187/php-or-python-for-image-processing , http://stackoverflow.com/questions/3721329/python-3-1-image-library , http://stackoverflow.com/questions/6188552/are-there-image-processing-modules-for-python-3 –  Dec 14 '11 at 22:35

2 Answers2

6

check the Image Module http://effbot.org/imagingbook/image.htm

next time, try to google it :) unless you have some special requirement

Jonathan Root
  • 535
  • 2
  • 14
  • 31
llazzaro
  • 3,970
  • 4
  • 33
  • 47
0

Try the Python Image Library:

http://www.pythonware.com/library/

Some of it is a bit abstract (like the methods for manipulating image statistics) but in general it supports most formats.

Update There is a fork http://python-pillow.org/ which looks fairly active.

Edmund
  • 10,533
  • 3
  • 39
  • 57