- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想生成缩略图列表。我选择了 sorl-thumbnail,因为它似乎被大量使用和开发。
我的问题是模板标签“thumbnail”:它正确生成缩略图图像和缩略图对象,但我只需要 url。
我不介意缩略图是否尚未生成/准备好,我只关心模板生成。我可以通过自定义 View 提供我的缩略图,这不是问题,因为这些只对少数人可用。
因此,为了简化,我想将 url 生成与缩略图生成本身分离。
sorl-thumbnail 可以吗?如果不能,您知道另一个可以做到的项目吗?
如果已经可以做到,我宁愿不自己写。
附言我会将缩略图存储在磁盘上。
最佳答案
我在使用 Django 的早期遇到了完全相同的问题。我要求所有生成的缩略图都存储在磁盘上。我们在使用 PIL 的部署服务器上也遇到了问题(当时 Python 3 存在几个问题)。
我们找不到任何可以帮助我们的东西,所以我们得到了以下结果。我们还最终从命令行成为 imagemagick 以避免 PIL。
我们的想法是创建一个自定义标签,要求提供缩略图。如果不存在,标签将创建缩略图并将其存储在磁盘上供以后使用(在具有样式名称的子目录中)。因此,只有在有人第一次访问该页面时才会有延迟。这个想法来自 Drupal。
此外,缩略图尺寸是特定的,因此我们在项目设置中对其进行了硬编码,但更改它应该不会太难。
坦率地说,我不确定这是否是最佳解决方案,但它仍然有效。这也是我早期使用 Python 编写的代码之一,所以请谨慎使用(现在我完全了解例如 os.join
等,但还没有时间改进和测试;但我也是对您的建设性意见非常感兴趣)。
首先,这里是设置:
IMAGE_STYLES = {
'thumbnail_style': {
'type': 'thumbnail', # maintain a max of one of the two dimensions, depending on aspect ratio
'size': (150, 1000)
},
'thumbnail_crop_style': {
'type': 'thumbnail-crop', # maintain both dimensions by cropping the remaining
'size': (150, 150)
},
'thumbnail_upscale_style': {
'type': 'thumbnail-upscale', # same as first, but allow upscaling
'size': (150, 150)
},
}
这是自定义标签:
from django import template
from django.template.defaultfilters import stringfilter
from django.conf import settings
from subprocess import check_output, call
import os
register = template.Library()
@register.filter
@stringfilter
def image_style(url, style):
""" Return the url of different image style
Construct appropriately if not exist
Assumptions:
- Works only for Linux OS; double slashes are anyway ignored
- MEDIA_URL is local (url is in form MEDIA_URL.. (eg /media/..)
:param url: An image url
:param style: Specify style to return image
:return: image url of specified style
"""
path_file_name = settings.BASE_DIR + url
style_url_path = '/'.join((os.path.dirname(url), style))
style_url = '/'.join((style_url_path, os.path.basename(url)))
style_path = settings.BASE_DIR + style_url_path
style_path_file_name = settings.BASE_DIR + style_url
style_def = settings.IMAGE_STYLES[style]
if not os.path.exists(style_path_file_name):
if not os.path.exists(style_path):
os.makedirs(style_path)
by = chr(120) # x
plus = chr(43) # +
source_size_str = str(check_output(['identify', path_file_name])).split(' ')[2]
source_size_array = source_size_str.split(by)
source_size_x = int(source_size_array[0])
source_size_y = int(source_size_array[1])
target_size_x = style_def['size'][0]
target_size_y = style_def['size'][1]
target_size_str = str(target_size_x) + by + str(target_size_y)
if style_def['type'] == 'thumbnail':
if target_size_x > source_size_x and target_size_y > source_size_y:
target_size_str = source_size_str
call(['convert', path_file_name, '-thumbnail', target_size_str, '-antialias', style_path_file_name])
elif style_def['type'] == 'thumbnail-upscale':
call(['convert', path_file_name, '-thumbnail', target_size_str, '-antialias', style_path_file_name])
elif style_def['type'] == 'thumbnail-crop':
source_ratio = float(source_size_x) / float(source_size_y)
target_ratio = float(target_size_x) / float(target_size_y)
if source_ratio > target_ratio: # crop vertically
crop_target_size_x = int(source_size_y * target_ratio)
crop_target_size_y = source_size_y
offset = (source_size_x - crop_target_size_x) / 2
crop_size_str = str(crop_target_size_x) + by + str(crop_target_size_y) + plus + str(offset) + plus + '0'
else: # crop horizontally
crop_target_size_x = source_size_x
crop_target_size_y = int(source_size_x / target_ratio)
offset = (source_size_y - crop_target_size_y) / 2
crop_size_str = str(crop_target_size_x) + by + str(crop_target_size_y) + plus + '0' + plus + str(offset)
call(['convert', path_file_name, '-crop', crop_size_str, style_path_file_name])
call(['convert', style_path_file_name, '-thumbnail', target_size_str, '-antialias', style_path_file_name])
return style_url
这是在 ntemplate 中的用法:
<img src="{{ image_field.url|image_style:'my_style' }}">
关于python - 有没有办法在不生成缩略图的情况下使用 sorl-thumbnail url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30841620/
我是 Java 新手,这是我的代码, if( a.name == b.name && a.displayname == b.displayname && a.linknam
在下面的场景中,我有一个 bool 值。根据结果,我调用完全相同的函数,唯一的区别是参数的数量。 var myBoolean = ... if (myBoolean) { retrieve
我是一名研究 C++ 的 C 开发人员: 我是否正确理解如果我抛出异常然后堆栈将展开直到找到第一个异常处理程序?是否可以在不展开的情况下在任何 throw 上打开调试器(即不离开声明它的范围或任何更高
在修复庞大代码库中的错误时,我观察到一个奇怪的情况,其中引用的动态类型从原始 Derived 类型更改为 Base 类型!我提供了最少的代码来解释问题: struct Base { // some
我正在尝试用 C# 扩展给定的代码,但由于缺乏编程经验,我有点陷入困境。 使用 Visual Studio 社区,我尝试通过控制台读出 CPU 核心温度。该代码使用开关/外壳来查找传感器的特定名称(即
这可能是一个哲学问题。 假设您正在向页面发出 AJAX 请求(这是使用 Prototype): new Ajax.Request('target.asp', { method:"post", pa
我有以下 HTML 代码,我无法在所有浏览器中正常工作: 我试图在移动到
我对 Swift 很陌生。我如何从 addPin 函数中检索注释并能够在我的 addLocation 操作 (buttonPressed) 中使用它。我正在尝试使用压力触摸在 map 上添加图钉,在两
我设置了一个详细 View ,我是否有几个 Nib 文件根据在 Root View Controller 的表中选择的项目来加载。 我发现,对于 Nibs 的类,永远不会调用 viewDidUnloa
我需要动态访问 json 文件并使用以下代码。在本例中,“bpicsel”和“temp”是变量。最终结果类似于“data[0].extit1” var title="data["+bpicsel+"]
我需要使用第三方 WCF 服务。我已经在我的证书存储中配置了所需的证书,但是在调用 WCF 服务时出现以下异常。 向 https://XXXX.com/AHSharedServices/Custome
在几个 SO 答案(1、2)中,建议如果存在冲突则不应触发 INSERT 触发器,ON CONFLICT DO NOTHING 在触发语句中。也许我理解错了,但在我的实验中似乎并非如此。 这是我的 S
如果进行修改,则会给出org.hibernate.NonUniqueObjectException。在我的 BidderBO 类(class)中 @Override @Transactional(pr
我使用 indexOf() 方法来精细地查找数组中的对象。 直到此刻我查了一些资料,发现代码应该无法正常工作。 我在reducer中尝试了上面的代码,它成功了 let tmp = state.find
假设我有以下表格: CREATE TABLE Game ( GameID INT UNSIGNED NOT NULL, GameType TINYINT UNSIGNED NOT NU
代码: Alamofire.request(URL(string: imageUrl)!).downloadProgress(closure: { (progress) in
我是一名优秀的程序员,十分优秀!