Tagged Questions

2
votes
2answers
420 views

How to make custom PhotoEffects in Django Photologue?

I'm creating an image gallery in Django using the Photologue application. There are a number of PhotoEffects that come with it. I'd like to extend these and make my own so that I can do more ...
1
vote
1answer
276 views

How to iterate over columns of an image?

I want to transform images like this to add an effect to pictures in django as described here. I decided to implement it as a process for the great django-imagekit/photologue My knowledge of PIL ...
0
votes
1answer
40 views

Where Photologue's Photo.get_previous_by_date_added() method defined?

Definition of Photologue model Photo doesn't contain method get_previous_by_date_added, as well as its parent model ImageModel. ImageModel inherits from django models.Model base class which hasn't ...
0
votes
2answers
703 views

Django: remove GROUP BY added with extra() method?

Hi (excuse me for my bad english) ! When I make this: gallery_qs = Gallery.objects.all()\ .annotate(Count('photos'))\ .extra(select={'photo_id': ...