Modern IPhones store images in HEIC files. How to convert them to JPG?
Install the heif-convert
utility:
sudo apt install libheif-examples
Then run:
for f in *.HEIC; do heif-convert -q 100 $f ${f/.HEIC/.jpg}; done
Tags:
Modern IPhones store images in HEIC files. How to convert them to JPG?
Install the heif-convert
utility:
sudo apt install libheif-examples
Then run:
for f in *.HEIC; do heif-convert -q 100 $f ${f/.HEIC/.jpg}; done