imagemagick 使用 -flatten 转换 PSD 并忽略隐藏层

imagemagick convert PSD using -flatten and ignore hidden layers

我目前正在使用以下命令将 PSD 转换为 JPEG

convert.exe "input.psd" -flatten -resize 1280x-1  "output.jpg"

输出包含隐藏层的 JPEG。

有没有办法在创建 JPEG 时展平 PSD 而忽略隐藏层?

尝试:

convert.exe "input.psd[0]" -resize 1280x-1 "output.jpg"

这只使用图层“1”,它应该是您完成的 psd 文件。

我不知道你调整大小中的 -1 应该做什么。