You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow a new option in versions from which start to process the file.
For performance reasons, when you are working with big files it makes sense, if possible, start processing the file from a small version, instead of using the original one. I.e.:
version :thumb do
process resize_to_fill: [280, 280]
end
version :small, from_version: :thumb do
process resize_to_fill: [60, 60]
end
0 commit comments