MacのAutomatorでSquooshするクイックアクション
1738 ワード
目的:画像を簡単に圧縮したい
Squooshで画像を圧縮するときにPWAはあるけども、開いてファイルなげて圧縮するのがめんどくさかった
完成品
画像圧縮.workflow
export PATH=$PATH:/usr/local/bin
for f in "$@"
do
npx @squoosh/cli --mozjpeg '{"quality":75}' -s '-compressed' -d ${f%/*} $f
done
アクション
画像圧縮.workflow
export PATH=$PATH:/usr/local/bin
for f in "$@"
do
npx @squoosh/cli --mozjpeg '{"quality":75}' -s '-compressed' -d ${f%/*} $f
done
参考
npxのコマンドが通らない→MacのAutomatorでnpmコマンドを使う
Squooshのusage→GoogleChromeLabs / squoosh
ファイルを同じ場所に保存→dirname、basenameは「%/」と「##/」で書くと処理速度が早くなる
Author And Source
この問題について(MacのAutomatorでSquooshするクイックアクション), 我々は、より多くの情報をここで見つけました https://qiita.com/takumikunn15/items/8a0c9e999ae563baaaa4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .