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
[ Home | Post Entry | Log in | Search | Browse Options | Site Map ]