A Django app to manage thumbnail images

learn more… | top users | synonyms

0
votes
0answers
16 views

How can change or override sorl-thumbnail cache path and add image with absolute path?

I have and mediaservice website and my file storage is in other folder from media folder and I want to cache thumbnails in the other folder, How can I change sorl-thumbnail cache folder and How can I ...
0
votes
1answer
17 views

override save method - 'ImageFile' object has no attribute '_committed'

I override the save method like below, and get_thumbnails and save with sorl.. But get the error 'ImageFile' object has no attribute '_committed' class HotelPhotos(models.Model): hotel = ...
0
votes
0answers
21 views

Reducing sorl thumbnail sql queries?

I'm using sorl-thumbnail to generate thumbnails for a list of images. Essentially my code looks like {% for image in image_list %} {% thumbnail image.image "158x158" crop="center" as im %} ...
1
vote
1answer
26 views

sorl-thumbnail ThumbnailException Error After Cloning EC2 Instance

I cloned a working EC2 instance to create a secondary staging server. Everything is working as it should with the exception of sorl-thumbnail. Before I describe the errors I'm receiving, I think ...
1
vote
0answers
25 views

django sorl-thumbnail json

I am using Sorl-Thumbnail to generate thumbnails within pages via template tags. This all works perfectly fine. However I have now added a store locator function to the site which feeds into my ...
0
votes
0answers
71 views

How do i should i get sorl thumbnail to work?

I have failed to get sorl thumbnail to work. I have looked around and most people fixed their problem with sorl thumbnail by reinstalling PIL. I tried that and it just did not work out. in my ...
0
votes
1answer
165 views

sorl-thumbnail with graphicsmagick backend pdf/image conversion error on Windows7

I'm trying to set up the sorl-thumbnail django app to provide thumbnails of pdf-files for a web site - running on Windows Server 2008 R2 with Appache web server. I've had sorl-thumbnail functional ...
1
vote
1answer
95 views

Django - How to use sorl-thumbnail?

I'm using Django with PostgreSQL but I need to use some App to handle thumbnails. There is an app very well rated called Sorl-Thumbnail In the installation instructions says that I need to use a key ...
0
votes
1answer
169 views

SuspiciousOperation using sorl-thumbnail

I have a Django web application that accesses and manipulates several server filesystems (e.g. /fs01, /fs02, etc.) on behalf of the user. I'd like to present thumbnails of images on those filesystems ...
3
votes
0answers
173 views

Wrong url with Django Sorl thumbnail with Amazon s3

I am having a very strange error in using sorl thumbnails in my django project which uses S3 for media files. I have done my settings as pointed out in this answer ...
1
vote
1answer
115 views

Django sorl-thumbnail display image from url

I have working solr-thumbnail in several parts of my project, but this time I want to display an image from a URL, I have it like this: {% load thumbnail %} {% thumbnail profile_picture_url ...
0
votes
0answers
73 views

sorl-thumbnail in Django admin using AdminImageMixin

I'm trying to use sorl-thumbnail v11.12 to display thumbnails in the Django admin. My models.py already uses sorl.thumbnail.ImageField as per the docs: Note You do not need to use the ...
0
votes
1answer
142 views

Working with sorl-thumbnail and Django Admin

I get this error "employee_directory.thumbnail_kvstore' doesn't exist" when I use sorl-thumbnail to try and format my django admin profile image. Has anyone ran into this while working with ...
0
votes
1answer
132 views

check if sorl-thumbnail has already cached an image

I'm running a django app with sorl-thumbnail and a lot of remote images (sorl loads image from external source). Ideally I'd like to check if sorl has already cached an image in my template, and if ...
1
vote
1answer
47 views

Is it possible to change the sorl lib generated thumbnails to any other path?

by default sorl saves thumbnails inside images folder. it creates cache folder inside images folder by default. how can i change this to any path ?
1
vote
2answers
183 views

How to thumbnail static files?

I want to resize my static files with sorl thumbnail but it doesnt work here is my codes {% if not new.photo %} {% with path="{{STATIC_URL}}/images/empty-news.jpg" %} {% thumbnail path "80x80" ...
0
votes
1answer
72 views

Setting dynamic crop on sorl.thumnail

I have added a field on my model for specifying where the thumbnail should crop from, but I can't seem to add that to the template tag. Here is how I do it now: {% if entry.main_image.crop_value ...
2
votes
1answer
121 views

Redis key matching performance

We are using Redis for key-value ordinary caching and for our thumbnail cache. In a machine which has 100+ sites Redis thumnail database has 500000 keys without distinctive prefix like: ...
0
votes
1answer
135 views

sorl-thumbnail - resize only if image is bigger then given dimmension

How can I prevent sorl-thumbnail from scaling up images which are smaller than desired thumbnail? When scaling using {% thumbnail %} tag, the image is always scaled to desired dimmensions, while I ...
0
votes
1answer
466 views

How do I use Django, sorl-thumbnail, memcached, and S3 together?

I've got a project in which I need to start creating dynamically-resized thumbnails of user-uploaded images, where previously I'd been generating some specifically sized ones. I have an existing ...
0
votes
0answers
30 views

Use separate database for Sorl-Thumbnail

I want to separate all my app-data from the cached kv-store. Is there a sorl setting I missed? Would that work with a database router somehow? Has anyone ever done this?
1
vote
4answers
549 views

django-storages + sorl_thumbnail + S3 not working well together (URLs mismatch)

I am using django-storages and sorl_thumbnail together and I am using Amazon S3 for static and media files. I am using one bucket with 2 folders, 1 for static and 1 for media. Here is my config: ...
0
votes
0answers
213 views

sorl-thumbnail not creating thumbnails

I'm having some difficulty with sorl-thumbnail. My template is as follows: {% thumbnail project.image "75x75" crop="center" as im %} <img src="{{ im.url }}" width="{{ im.width }}" height="{{ ...
0
votes
2answers
101 views

Rebuilding old (2010) django project in 2012

I am trying to make an old Django project run again. Update #1: I removed the arguments extra_thumbnails and size so the server is running. But now I don't have proper thumbnails of my pictures... ...
0
votes
1answer
208 views

sorl.thumbnail does not work?

I installed sorl.thumbnail through pip and manually through GitHub but it doesn't work, I've added 'sorl.thumbnail', to the INSTALLED_APPS (I also tried adding the project name infront of it, it ...
1
vote
1answer
424 views

sorl-thumbnail is not working in django

I am using sorl-thumbnail to dynamically create thumbnails in my django project. This is my HTML code is: <html> <head><title>mypage</title> <% load thumbnail %} <div ...
2
votes
0answers
227 views

Using Django + easy-thumbnails/sorl-thumbnail on Elastic Beanstalk

I'm having some issues using Django and easy_thumbnails on Elastic Beanstalk and I'm not really sure what's going wrong... Here's the problem: I'm using easy_thumbnails to do my thumbnailing in the ...
0
votes
1answer
129 views

Custom sorl-thumbnail processor

I found a question (and an answer) related to sorl-thumbnail that looks like a good point related to what I’m looking for : Image filtering with the new sorl-thumbnail. But my django knowledge is far ...
1
vote
1answer
184 views

Linking to An Uploaded File in Django with Amazon S3

I am using django-storages backend and I have previously not used Amazon S3. I have migrated to Amazon S3 by uploading the files via Firefox's S3 Manager. THe problem is, with this code: <a ...
0
votes
1answer
189 views

What should I use instead of deprecated ImageWithThumbnailsField of django-sorl?

I'm struggling with ImageWithThumbnailsField which seems deprecated. What should I use instead? I don't want to rewrite large parts of my project as I'm doing only slight bugfixing and updating... ...
3
votes
2answers
269 views

SyncDB after installing new app having already installed South - don't want to mess anything up

I'm using South to manage my (MySQL) database tables for a Django 1.4 project, its working great. This is a bit of a newbie question, but I'm now adding sorl.thumbnail ...
0
votes
0answers
121 views

sorl-thumbnail give wrong images urls

In my Django project i use sorl-thumbnail. After syncdb image urls are look like this: <img width="584" height="324" alt="brown leather" src="cache/1c/93/1c93b1c9992133af428e797d1fc37eab.jpg"> ...
0
votes
1answer
136 views

Django sorl thumbnail Crash - Lots of Large images

When ever I have lots of large images, like 800x650 etc in a template, Django just crashes. It works on my Mac locally but not on my Linode production server. Could one do sort of a batch process ...
0
votes
0answers
171 views

Caught IOError while rendering: not enough data

I'm having a problem during the process of creating thumbnails. I'm using sorl.thumbnail in its latest version. The error points to line my thumbnail, but the address of the image exists. {% ...
1
vote
1answer
337 views

Thumbnail tag failed: (sorl-thumbnail 11.12)

I keep getting strange errors from sorl-thumbnail in my production environment (using Sentry as a logger). They all just say Thumbnail tag failed: (which is oh-so-uber-helpful), and they all come from ...
0
votes
1answer
103 views

Django Handle big files ( imageblob )

I am writing a small gallery app and after extensive testing i submitted a 3mb image. Basically the gallery app relies on another app that creates an UploadedFile instance for every image, however i ...
0
votes
1answer
208 views

Change/delete images within Django formset

I'm using a formset to upload images and link them to a model using a manytomany relationship. I display the formset below the status form so an user can fill the status field + add an image then ...
0
votes
1answer
726 views

Python Image Library Error - Caught IOError while rendering: not enough data

I have created a website which is using the sorl-thumbnail to resize the images thats uploaded. Most of the images are getting resized without any issues but for few am getting the following error : ...
0
votes
2answers
166 views

How do I load sorl's thumbnail template tag in all my templates

Given that sorl isn't an app directory wide and the template tag definition lives in the virtualenv dir I want to be able to use {% thumbnail .... %} without having to use {% load thumbnail %} first. ...
7
votes
2answers
402 views

Pointers on using celery with sorl-thumbnails with remote storages?

I'm surprised I don't see anything but "use celery" when searching for how to use celery tasks with sorl-thumbnails and S3. The problem: using remote storages causes massive delays when generating ...
2
votes
1answer
163 views

Using sorl-thumbnail with MongoDB storage

I've extended sorl-thumbnail's KVStoreBase class, and made a key-value backend that uses a single MongoDB collection. This was done in order to avoid installing a discrete key-value store (e.g. ...
1
vote
0answers
168 views

sorl-thumbnail URLField instead of ImageField

I have a bunch of images uploaded to Amazon S3 and I want to use sorl on them in the way, so sorl wouldn't relocate files into upload_to directory. Like if I've used URLField instead of FileField ...
0
votes
0answers
121 views

sorl.thumbnail and s3 are adding port 80 to the url and encoding it also even with |safe

I have the sorl.thumbnail template tag on my site but the template always renders it out like this (it's the img tag that is messing up): <li> <a ...
1
vote
2answers
388 views

sorl-thumbnail's template tags do nothing

I'm using sorl-thumbnail to get some images to crop. I have a model looking like this from django.db import models from sorl.thumbnail import ImageField class Photo(models.Model): image = ...
0
votes
2answers
180 views

How to use sorl-thumbnail without django?

In my case I have an opportunity to generate image thumbnails and do some post-processing before they are uploaded to a server (Amazon S3) on administrators computer. I know that sorl checks if ...
2
votes
0answers
179 views

How to use sorl-thumbnail in Ajax requests

I have a project where the sorl-thumbnail plugin is working very well in the admin however I'm having some issues implementing thumbnails in Ajax requests. Using sorl in conjunction with ...
1
vote
1answer
507 views

How to integrate sorl-thumbnail into an existing django project?

I'm trying to integrate sorl-thumbnail into an existing project to show thumbnails of ImageField photos in the django admin, however am having no results. I installed sorl using pip install ...
0
votes
1answer
103 views

Django - python cut image after checking original Width

I'm using sorl-thumbnail and PIL for my django site. How do I cut image when certain conditions meet? For example, create thumbnail of width 600px only when the original image width is greater than ...
1
vote
1answer
203 views

How to Scale images in Django

Background: I have to upload images from users. Problem: The images need to be re-sized so that I don't end up with huge images on my disk. This re-sizing should happen just after the image is ...
0
votes
2answers
267 views

sorl-thumnail resizing and saving

I'm trying to use sorl-thumnail to resize the image in the views then saving it and getting IOError while calling get_thumnail(). Also I need to know how to save the resized image. Sorry if you ...

1 2 3