I am using sorl thumbnail for the first time. I am working with Low Level API and using the get_thumbnail method.

As per the link, I successfully used im = get_thumbnail(my_file, '100x100', crop='center', quality=99), but I would like to specify the destination source location and the filename as well. Is that possible? How do I do that?

link|improve this question

If you are talking about giving the thumbnail that is created from the source image its own filename and location - you can't. This information is generated by sorl and is what makes it so quick performance-wise – Timmy O'Mahony Feb 15 at 14:32
Ya, I am exactly asking that. Is there any way that I can do this? – Sandip Agarwal Feb 15 at 15:26
feedback

2 Answers

up vote 0 down vote accepted

Short answer: you can't. The path and filename are generated by sorl and directly relate to how the thumbnail paths and their files are cached, and stored.

If you look at the actual method in sorl that gets or creates the thumbnail:

https://github.com/sorl/sorl-thumbnail/blob/master/sorl/thumbnail/base.py#L32

you'll see that the destinatation and filename of the created thumbnail is a hash value of the source filename, source location, source dimensions and source options. It creates this hash, checks the cache to see a value for that hash/key is present, if it is - return the path corresponding to that thumbnail, if not - generates the thumbnail, save it and cache the path.

Therefore changing the destination of the filename would mean you could no longer retrieve that thumbnail from the cache.

The only thing you can change is the root folder of where you want these files to be saved i.e. under /cache/... or /thumbnails/...

link|improve this answer
feedback
from django.core.files.base import File

my_file = File(open('/path/to/file', 'rb')) # or my_file = open('/path/to/file', 'rb')
im = get_thumbnail(my_file, '100x100', crop='center', quality=99)
link|improve this answer
No willfill, this is not what I am asking. I need something for destination and not for source. – Sandip Agarwal Feb 15 at 15:27
I'm sorry, I do not fully understand your question due to my low level of English. pastylegs rights, you can not change the sorl generated path, but you may try to write own function for generate thumbnails path.(but I think this not good solution) – willfill Feb 15 at 16:42
feedback

Your Answer

 
or
required, but never shown

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