简易缩略图:在缩略图别名中使用scale_and_crop图像处理器

时间:2013-05-10 01:46:25

标签: django thumbnails easy-thumbnails

我无法确定在scale_and_crop中为thumbnail alias图像处理器指定规格时使用的正确格式。

我尝试了很多变体,最近一次是这样的:

'year_thumb': {
    'scale_and_crop': (
        ('size', (120, 0)),
        ('crop', 'scale'),
        ('upscale', True),
    )
},

不确定如何做到这一点。

1 个答案:

答案 0 :(得分:3)

所以,遗憾的是,我从未在代码与缩略图别名设置中协调图像处理器参数的设置,但这是我如何完成相同或类似的事情:

'year_thumb': {
    'size': (120, 0),
    'autocrop': True,
    'crop': 'smart',
    'upscale': True,
},