Tagged Questions
1
vote
2answers
816 views
Django-imagekit: how to reduce image quality with a preprocessor_spec?
I've created this simple model class, with a Preprocessor to reduce my
photos'quality (the photos'extension is .JPG):
from django.db import models
from imagekit.models import ImageModel
from ...
0
votes
1answer
616 views
Dynamically create and save image with Django and PIL/Django-Photologue
I want to generate a page of html with dynamic content and then save the result as an image as well as display the page to the user. So, user signs up to attend conference and gives their name and ...