为了能够拥有动态图像大小(是的。我知道)我提出了以下version
,它只是在每个请求上创建一个临时文件(jap,我知道愚蠢 - [store file]在基于args的缓存中?])
version :resized do
def url(*args)
width,height,gravity,region = args[0],args[1],args[2],args[3]
manipulate! do |img|
cols, rows = img[:dimensions]
img.combine_options do |cmd|
if width != cols || height != rows
scale = [width/cols.to_f, height/rows.to_f].max
cols = (scale * (cols + 0.5)).round
rows = (scale * (rows + 0.5)).round
cmd.resize "#{cols}x#{rows}"
end
cmd.gravity gravity
cmd.extent "#{width}x#{height}#{region}" if cols != width || rows != height
end
img = yield(img) if block_given?
img
end
convert "jpg"
super()
end
end
我遇到的问题是,因为我没有process
这个版本,所以它准备复制原版并将其用于'on-request'操作。如果原始文件是100MB tiff这会变得混乱!
所以现在我正在寻找一种方法来保持该版本不会实际创建一个文件,并使用不同版本的文件进行“请求”操作。
有什么想法吗?