編集の要約なし |
|||
| (同じ利用者による、間の3版が非表示) | |||
| 1行目: | 1行目: | ||
==公式おすすめ== | |||
brew install imagemagick | brew install imagemagick | ||
stripオプションで、GPS、カメラ情報など、不要データも削除。 | |||
magick input.png -strip -resize 1200x -quality 80 output.webp | magick input.png -strip -resize 1200x -quality 80 output.webp | ||
===一括で=== | |||
cd ~/images_nagare | |||
for file in *.png; do | |||
magick "$file" \ | |||
-strip \ | |||
-resize 1200x \ | |||
-quality 80 \ | |||
"${file%.png}.webp" | |||
done | |||
2026年5月7日 (木) 15:00時点における最新版
公式おすすめ
brew install imagemagick
stripオプションで、GPS、カメラ情報など、不要データも削除。
magick input.png -strip -resize 1200x -quality 80 output.webp
一括で
cd ~/images_nagare
for file in *.png; do
magick "$file" \
-strip \
-resize 1200x \
-quality 80 \
"${file%.png}.webp"
done