Tagged Questions

5
votes
2answers
171 views

Django: sorl-thumbnail and easy-thumbnail in same project

I'm working on and project that uses two separate modular Django apps. However, one app requires easy-thumbnails and the other requires sorl-thumbnails. Unfortunately, the two thumbnail libraries ...
5
votes
3answers
885 views

Storing images and thumbnails on s3 in django

I'm trying to get my images thumbnailed and stored on s3 using django-storages, boto, and sorl-thumbnail. I have it working, but it's very slow, even with small images. I don't mind it being slow when ...
5
votes
1answer
797 views

Sorl-thumbnail: upgrading to new version

I recall there was a discussion on the future of sorl-thumbnail and big changes coming; now that page is gone… I'm glad that the project is still being actively maintained, but I can't find any ...
4
votes
1answer
695 views

Django + S3 (boto) + Sorl Thumbnail: Suggestions for optimisation

I am using S3 storage backend across a Django site I am developing, both to reduce load from the EC2 server(s), and to allow multiple webservers (redundancy, load balancing) access the same set of ...
3
votes
1answer
449 views

Sorl thumbnail not showing thumb in AdminImageMixin

I'm having trouble with Django 1.3 using django-grappeli and sorl-thumbnail. I have a project that uses this code from the official sorl-thumbnails docs: # myapp/admin.py from django.contrib import ...
3
votes
2answers
429 views

How to get thumbnail in python code in version 3.2.5 of sorl thumbnail?

The documentation of sorl thumbnail still refers to the get_thumbnail function, but this doesn't exist in v.3.2.5. (cannot import name get_thumbnail) For the life of me, I can't find any reference to ...
2
votes
2answers
341 views

sorl-thumbnail resize and add background

I'm using sorl-thumbnail and I want to resize an image to 200x200. Let's say the image will then be 160x200, because its not square. How can I add a white background (or borders) so that the resulting ...
2
votes
1answer
166 views

sorl-thumbnail unit tests fail by 1 pixel (!)

I'm using sorl-thumbnail in a Django 1.2 (currently 1.2 RC) project and getting a surprising failure of four of sorl's built-in unit tests. Essentially, the resized images are all 1px shorter than the ...
2
votes
2answers
2k views

Thumbnails in the django admin panel using sorl

I am trying to have the pictures I upload in the Django admin panel to show up as thumbnails instead of the path. I have sorl installed and can make thumbnails that show up in my views. I have found ...
2
votes
1answer
699 views

assign an image with ImageWithThumbnailsField (django sorl)

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 doesn't ...
1
vote
0answers
47 views

SORL thumbnail converts to blank - Django

Iv always been using SORL to create thumbnails. This time it creates the thumbnails but they are all just blank images. I even tried easy_thumbnails but it does not even return a thumbnail src for the ...
1
vote
1answer
92 views

change format sorl thumbnail

can someone please give me an example of how to change the SORL-thumbnail format in the django template tag. I've read the documentation here: http://thumbnail.sorl.net/template.html#thumbnail and ...
1
vote
1answer
127 views

Using static images with sorl-thumbnail

I am trying to serve the thumbnail of a file that resides in my STATIC_ROOT folder. It doesn't really matter if it ends up in MEDIA_URL/cache, but sorl-thumbnail will not load the image from the ...
1
vote
1answer
43 views

sorl-thumbnail multi-page pdfs

It is possible to use sorl to thumbnail multi-page pdfs? I know you need to use the ImageMagick back end to use pdfs at all. But I am having no success with multi-page pdfs. Looking at the source I ...
1
vote
1answer
350 views

Use django sorl-thumbnail with django form-utils

How do I implement sorl thumbnailing in django form utils? So the form utils documentation says this about its ImageWidget: (Thumbnails only available if sorl-thumbnail is installed; otherwise ...
1
vote
1answer
454 views

fixed window-size in prettyphoto

I'm using prettyphoto for a photo gallery in a django-app. My Images have a maximum height/width (with sorl-thumbnail), but the apect-ratios are different. Because of that, the window of prettyphoto ...
1
vote
1answer
513 views

Sorl-thumbnail bad url's

I setup sorl-thumbnail according to instructions, but none of the images are appearing when I try to use the templatetags in my app. It appears that the url's are not valid, but it's not clear what ...
1
vote
2answers
285 views

Django TemplateSyntax Error with Sorl-thumbnail

I'm trying to get Sorl-thumbnail running on my staging server, but I'm running into a TemplateSyntaxError which is throwing me since the app works fine on localhost. The error is coming in at {% ...
1
vote
2answers
448 views

New version of sorl-thumbnail , how show thumb in django admin?

im using the new version of Sorl-thumbnail, but i cant show thumbs in django admin... how ill use get_thumbnail() ?, just i can see the "cache" url of the images... Thanks
1
vote
1answer
219 views

Animated gif resizing with sorl-thumbnail

Is there any possibility to resize animated gifs with sorl?
1
vote
0answers
118 views

Thumbnails of ImageField of Many-to-Many relationship list in the admin interface

I have two models, Post and Photo. Photo contains information about photos, the date the original photo was uploaded (or alternatively - shot), a description, a title and more. The post contains post ...
1
vote
1answer
744 views

Django / Python / PIL / sorl-thumbnail generation in bulk - memory error

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 then call ...
1
vote
2answers
495 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 ...
1
vote
1answer
92 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 ...
1
vote
2answers
2k views

Django, sorl-thumbnail crop picture head

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 ...
1
vote
3answers
2k 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
1answer
13 views

How to use solr thumbnail in django on windows environment

I am trying to use sorl-thumbnail to provide image thumbnails. I have followed the documentation properly. I have installed memchached for windows, configured in the setting.py file. I have also ...
0
votes
1answer
15 views

Retrieve the generated thumbnails for sorl

I'm using sorl-thumbnails with my django project. Is there a way to retrieve the generated thumbnails of an image ? I've using the get_thumbnails method but in each call of it, it generate a new ...
0
votes
1answer
76 views

Sorl Thumbnail with Django in Mac OSX 10.7.2

I installed PIL, jpeg-8c, freetype-2.4.5 and sorl thumbnail. In my project, I have put sorl.thumbnail in settings.py . But when I use this code lines: >>> from apps.news.models import ...
0
votes
1answer
91 views

Can someone explain me how to get sorl-thumbnail working on the Admin page of Django?

I've got sorl-thumbnail up and running in templates with Redis to store the thumbnails. Great stuff!! However, I would like to have thumbails in my Admin. I used the example in the documentation (see ...
0
votes
1answer
73 views

sorl-thumbnail: Preserve “progressiveness” of JPEG files

Most of all JPEG files uploaded to my sites are saved in progressive format, but no thumbnail generated by sorl-thumbnail is generated as progressive when the original image is. This is essential when ...
0
votes
3answers
293 views

sorl thumbnail + django issues in production

I'm using sorl thumbnail with Django. On my local setup it works fine, but in production the thumbnails are not made. My code looks like this: {% load thumbnail %} {% thumbnail up.image "32x32" ...
0
votes
2answers
420 views

Django: sorl-thumbnail and hosting image files on my own file server

I like very much sorl-thumbnail library and I want to store image files not in current application (django) server, but to (another) my own file server with webserver for serving static files. Do I ...
0
votes
1answer
241 views

sorl-thumbnail: resize original image before saving?

Using sorl-thumbnail v11.01 and an ImageField on my model is there a simple way to have an uploaded file resized before saving it (to avoid saving a massive image, in case one has been uploaded)? ...
0
votes
1answer
229 views

help displaying thumbnail with sorl-thumbnail templatetag

I'm using sorl-sorl-thumbnail-v10.12.1-8-g0b7b514. My issue is using the sorl-thumbnail templatetag to display an image. I'm following the documentation using the simpliest way to display an image. ...
0
votes
1answer
422 views

Sorl thumbnail and cache problems

Hello I am trying to get sorl thumbnail to delete cached thumbnails when the image associated with my model is modified. I am accomplishing this using a signal as shown below. The listner is called ...
0
votes
1answer
264 views

ImageWithThumbnailsField generating empty thumbnail

I'm using an older version of sorl-thumbnail which has the model field ImageWithThumbnailsField. It works fine on my local dev server, but when I deploy it to Webfaction the thumbnails don't generate ...
0
votes
1answer
493 views

sorl-thumbnail won't delete thumbnails

Having issues with SORL Thumbnail and deleting thumbnails files or refreshing thumbnails when a file is overwritten. The scenario is that I have a file that for each entry is always the same but can ...
0
votes
2answers
376 views

sorl-thumbnail not deleting parent file or cache when entry is deleted

I'm not sure what I am doing wrong. But the uploaded file and it's related cache don't get deleted when the entry is deleted. I have a photos model inline of a property model, with an FK from the ...
0
votes
1answer
325 views

Constrain proportion option in sorl-thumbnail

I have many images with arbitrary heights and widths ( 2033x1957, 1560X980, ...). When i use sorl-thumbnail for these images in order to resize them to be 160x160 i don't get these exact sizes. I get ...
0
votes
1answer
93 views

Sorl-thumbnail repo asking for password

Im trying to clone hg+https://sorl-thumbnail.googlecode.com/hg/#egg=sorl-thumbnail in order to use it with my satchmo store. I have the link on a requirements file, but is asking me for a password, I ...
0
votes
2answers
565 views

Why does sorl.thumbnail ImageField fail in the admin?

I have code that looks like this: from sorl.thumbnail import ImageField class Gallery(models.Model): pass class GalleryImage(models.Model): image = ImageField(upload_to='galleries') In the ...
0
votes
3answers
1k views

sorl-thumbnail not working

I have been trying for several hours now to get sorl-thumbnail working, but it just won't work. The hard part is that it's not showing errors so I have no idea whats wrong. I followed the ...
0
votes
1answer
320 views

Django: sorl-thumbnail in a for template

First of all, a django newbie, so take it easy ;) I'm trying to do some thumbnails within a for loop - the next thing will be Pagination, or group_by, but one problem at a time ;) The thing is I've ...
0
votes
1answer
160 views

sorl-thumbnail: random name in Thumbnail field

I want to use str(uuid.uuid4()) instead of the name uploaded. I have this model: class foo(models.Model): pic = ThumbnailField(upload_to='pics', size=(200, 200)) I am uploading hello_world.jpg ...
0
votes
1answer
298 views

sorl-thumbnail and file renaming

having a similar model: class Foo(models.Model): slug = models.SlugField(unique=True) img = ImageWithThumbnailsField(upload_to='uploads/',thumbnail={'size': (56, 34)}) It works fine but I ...
0
votes
1answer
109 views

Avoiding thumbnail name collisions with sorl-thumbnail

Understanding that I should probably just dig into the source to come up with a solution, I'm wondering if anyone has come up with a tactic for dealing with this. In my project, I have a lot of ...
0
votes
3answers
1k 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
2answers
934 views

Django, sorl-thumb dont work

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 = ...
-1
votes
2answers
128 views

Django: sorl-thumbnail

This is my code {% thumbnail ham.thumbnail_url "50x20" crop="center" as im %} <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}"> {% endthumbnail %} and this is ...