我正在尝试缩放图像并将其从中心裁剪到一定大小。
基本上,如果我希望图像为 240x160(比例为 1.5:1)并且我的图像为 900x800(比例为 1.125:1)并使用以下设置:
filters:
- { name: geometry/scaledownonly, params: [240, 160] }
- { name: geometry/crop, params: [240, 160, 0, 0] }
但我无法得到想要的结果。
我正在尝试缩放图像并将其从中心裁剪到一定大小。
基本上,如果我希望图像为 240x160(比例为 1.5:1)并且我的图像为 900x800(比例为 1.125:1)并使用以下设置:
filters:
- { name: geometry/scaledownonly, params: [240, 160] }
- { name: geometry/crop, params: [240, 160, 0, 0] }
但我无法得到想要的结果。
在image_variations
站点设置 yaml 的站点块中,尝试添加以下内容:
image_variation_name:
reference: ~
filters:
- { name: geometry/scaledownonly, params: [240, 160] }
- { name: thumbnail, params: { size: [240, 160], mode: outbound } }
上面的块将做两件事。首先,您的图像将缩小到适当的大小(您已经有了那个位)。接下来,缩略图过滤器会将图像从中间(中心裁剪)裁剪到所需的尺寸。
我相信您追求的结果将适合以下配置:
...
image_variations:
your_alias_name:
reference: ~
filters:
thumbnail: { size: [240, 160], mode: outbound, allow_upscale: true }
...
此设置将产生一个裁剪到中心的缩小版本(到您想要的大小)。那是假设您正在使用 ezplatform 实现的图像别名系统。
希望这就是您正在寻找的答案:)