LoginSignup
1
0

More than 3 years have passed since last update.

画像ファイルの形式をHEICからJPGにしたい

Posted at

状況

スマホのiOSの画像のデフォルトの保存形式がどうやらHEICになったようでより画質が上がったようだ。しかし、いまだにjpgなどのファイル形式を使ってるところが多く、画像提出時などでHEICだと弾かれることがあった。今回はHEIC→jpgの画像形式の変換方法をまとめておこうと思う。

動作環境

Mac OS Catalina 10.15.1

変換方法

コマンドラインで以下のコードを打つだけ

sips --setProperty format jpeg input.heic --out output.jpg

input.heicの部分に変換前の画像

output.jpgに変換後の画像の名前をそれぞれ当てはめる

また対象画像が存在するディレクトリに移動する必要がある

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0