Image management on Django

527 Views Asked by At

I'm trying to figure out which image management library to use on django. What is the difference between photologue, image-kit, and pil(python imaging library)?

1

There are 1 best solutions below

0
On BEST ANSWER

Photologue is a Django application to manage photos. It uses PIL for the image processing.

ImageKit is a Django Application for image processing. It is meant for adding images to existing models.

PIL is the underlying library for both of these (and actually, most if not all image processing scripts in Python).