You maniacs! You blew it up!!
Jan. 21st, 2022 02:38 pmI just discovered that somewhere between my old iPhone SE and my spiffy new iPhone 12 Mini, Apple decided to introduce a new image format that nobody ever asked for called High Efficiency Image Format (which of course is abbreviated HEIC in the new file extension because WTF?). I did not realize this until I attempted to copy some pictures I took this summer onto the new Digital Picture Frame I got Richard for Christmas, and the device did not recognize this incomprehensible new format.
DAMN YOU APPLE!!!! DAMN YOU ALL TO HELL!
I figured out how to turn this helpful feature off on my iPhone camera for future pictures, but what about the thousands of pictures I've already taken? Do I have to download some dubious looking utility from some sketchy Internet site to convert these pictures?
DAMN YOU APPLE!!!! DAMN YOU ALL TO HELL!
I figured out how to turn this helpful feature off on my iPhone camera for future pictures, but what about the thousands of pictures I've already taken? Do I have to download some dubious looking utility from some sketchy Internet site to convert these pictures?
no subject
Date: 2022-01-22 11:44 pm (UTC)no subject
Date: 2022-01-24 06:37 pm (UTC)no subject
Date: 2022-01-24 07:08 pm (UTC)no subject
Date: 2022-01-24 09:00 pm (UTC)no subject
Date: 2022-01-24 10:05 pm (UTC)https://en.wikipedia.org/wiki/ImageMagick
The script to convert a folder of files is probably:
for f in *.heic; do convert $f $(basename $f .heic).jpg; done
Certainly that idea works for all image file formats that I've ever wanted to convert. If you don't want to do it at the commandline, I don't have an easy-baked solution for you, but I imagine that GUIs exist that use Imagemagick underneath.