エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
sips: Scriptable image processing system
I wanted to convert some .webp images to .png on my Mac. I asked ChatGPT: On MacOS use CLI to con... I wanted to convert some .webp images to .png on my Mac. I asked ChatGPT: On MacOS use CLI to convert webp images to PNG And it told me about sips: sips -s format png image.webp --out image.png Or to run it against all PNGs in a folder: for file in *.webp; do sips -s format png "$file" --out "${file%.*}.png"; done I had never heard of sips before - but apparently it's been a default command on mac



2023/02/19 リンク