Question

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 want it to scale only images which are bigger than that.

Was it helpful?

Solution

If you using ImageField I believe you can check the width/height first.

{% if image.width > 100 %}
    {% thumbnail image 100x100 as thumb %}
        <img src="{{ thumb.url }}"/>
    {% endthumbnail %}
{% else %}
    <img src="{{ image.url }}"/>
{% endif %}

OTHER TIPS

Why not use the sorl-thumbnail built-in upscale filter for that?

{% thumbnail image "1500x1500" upscale=False as thumb %}

Default value for upscale is True. Set it to False to get the desired behaviour.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top