web-dev-qa-db-ja.com

Imagemagick:固定高さ、比例幅に変換

Imagemagickを使用して、PNGのバッチをconvert固定高さ1080pxにプロポーショナル幅にバッチ化します。 proportionalの場合:つまり、元の画像が16.8%から1080pxに縮小される場合、幅も16.8%縮小される必要があります。

以前に正確なジオメトリを計算せずに変換を使用する方法(identifyといくつかのbash計算シェニガンを使用)?

35
Christian

これを試して:

convert -resize x1080 {from_path} {to_path}
68
Dmitri Gudkov

イメージジオメトリ は、-resize

xheight Height given, width automagically selected to preserve aspect ratio.

高さを指定するだけです

6
DanielB