如何使用Django Easy Thumbnails裁剪到正方形?

时间:2016-05-26 12:15:23

标签: django easy-thumbnails

我在我的网站上使用简易缩略图。它一般都很好。 但现在我想为Facebook创建一个产品Feed,图片需要600x600px的平方。

看起来像这样:

thumbnailer = get_thumbnailer(v.product.image)
thumbnail_options = {
  'crop': '50,0', #tried smart, scale and all kinds of combos
  'size': (600, 600)
}
resized_image = thumbnailer.get_thumbnail(thumbnail_options)

问题是我总是得到一个尺寸为600px,另一个尺寸为<600px。 我可以让它做一些类似智能选项的东西,但是以一种方式裁剪我得到方形图像吗?

提前谢谢!

1 个答案:

答案 0 :(得分:1)

Model.search('*')