prostock
prostock

Reputation: 9545

Image management on Django

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)?

Upvotes: 1

Views: 539

Answers (1)

Wolph
Wolph

Reputation: 80061

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).

Upvotes: 5

Related Questions