我在保存图片时已经使用PIL
来缩小图像尺寸,有点像这样:
image = Image.open(filename)
image.thumbnail(size, Image.ANTIALIAS)
image.save(filename)
现在我想在模板中显示图像列表,在views.py
中创建图像列表:
for company in companies:
list+='<img src="'+company.logo.url+'" />'
return render_to_response('index',{'list':list})
template
中的:
<span>{{list|safe}}</span>
在模板中显示图像以便快速加载时,是否可以缩小图像尺寸?