1
vote
1answer
55 views
Django / Python / PIL / sorl-thumbnail generation in bulk - memory error
hi folks!
I'm trying to bulk generate 4 thumnails for each of around 40k images with sorl-thumbnail for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and …
1
vote
2answers
51 views
User-Defined Thumnails for Django Project?
I'm putting together a Web site that makes heavy use of images. Those images need to be thumbnailed at various sizes to fit different templates.
I'm aware of solutions like sorl-thumbnail, which …
0
votes
3answers
115 views
sorl.thumbnail : ‘thumbnail’ is not a valid tag library ?
I am trying to install sorl.thumbnail but am getting the following error message:
'thumbnail' is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module …
0
votes
1answer
32 views
paths not being consistent python django.
I'm trying to import sorl-thumbnail into my app in django. Now the way that i have the site set up, using mod_wsgi on centos5 with cpanel the path for the apps must have the project name when …
0
votes
2answers
153 views
Django, sorl-thumbnail crop picture head
Hi, guys, i would like to know if sorl-thumbnail have any option to crop from the bottom to the top... i have a litter problem, in some picture sorl-thumbnail is croping the head of the people in …
0
votes
0answers
37 views
testing for a blank file upload
I have a model that looks like this:
class ProjectImage(models.Model):
project = models.ForeignKey(Project)
in_slideshow = models.BooleanField(default=False)
large_thumb = …
0
votes
2answers
264 views
need help solving sorl-thumbnail error: “’thumbnail’ is not a valid tag library:”
I've been pulling my hair out trying to solve this problem and I've tried everything and I have no ideas left.
I keep seeing this error:
Exception Value: 'thumbnail' is not a valid tag library: …
0
votes
2answers
131 views
Django, sorl-thumb dont work
Hi guys, i dont know what im doing wrong, but sorl-thumb just upload the image but dont make thumbs...
model.py
from sorl.thumbnail.fields import ImageWithThumbnailsField ,ThumbnailField
imagen = …
2
votes
1answer
248 views
assign an image with ImageWithThumbnailsField (django sorl)
Hi there,
I'm using ImageWithThumbnailsField from sorl to handle images on my project, without any problems.
Now I'd like to use PIL to generate images out of my text, in some cases that the user …
