سؤال

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.

هل كانت مفيدة؟

المحلول

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 %}

نصائح أخرى

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.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top