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 static folder.

current code:

{% thumbnail "images/store/no_image.png" "125x125" as thumb %}

hack that works

{% thumbnail "http://localhost/my_project/static/images/store/no_image.png" "125x125" as thumb %}

I don't like the hack because A) It is not dry (my project is actually served from a sub-directory of / B) It is using http to grab a file that is only 3 directories away, seems pointlessly inefficient

link|improve this question

20% accept rate
Mikko Hellsing (sorl-thumbnail developer) said I needed to instatiate sorl-thumbnail with a base_url, but I have not been able to find any documentation on how to do that. – DarwinSurvivor Sep 20 '11 at 19:29
feedback

2 Answers

Assuming you are using Django 1.3 you should take a look at the docs about Managing static files

If you setup everything correctly, you can include your images like this:

<img src="{{ STATIC_URL }}images/store/no_image.png" />
link|improve this answer
1  
That's what I normally use, but I need to re-size it somewhat arbitrarily (thus the use of sorl-thumbnail). If it turns out to not be possible to use sorl-thumbnail for static content, I may be forced to create multiple resolutions of the file. – DarwinSurvivor Sep 21 '11 at 11:34
@DarwinSurvivor- Have you found the answer to this question? I too am trying to create thumbnails of static files but can't figure it out. – Clayton Feb 14 at 15:38
At least with easy_thumbnails this shouldn't be a problem at all: packages.python.org/easy-thumbnails/… – arie Feb 14 at 19:23
feedback

I worked around this by passing through a file to the template context from my view.

Here is an example util function I called from my views:

def get_placeholder_image():
    from django.core.files.images import ImageFile
    from django.core.files.storage import get_storage_class
    storage_class = get_storage_class(settings.STATICFILES_STORAGE)
    storage = storage_class()
    placeholder = storage.open(settings.PLACEHOLDER_IMAGE_PATH)
    image = ImageFile(placeholder)
    image.storage = storage
    return image

You could probably do something similar as a custom template tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.