Posted On May 1, 2024

Linux: How to Convert HEIC to JPEG

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: How to Convert HEIC to JPEG

First, install certain utilities:

sudo apt-get install libheif-examples

Second, navigate to a directory where there are HEIC files:

directory="/media/kim/Data/Photos/"
cd "$directory"

Third, run the conversion loop:

# This is a for loop that takes into account multiple variables since file name extensions can vary in type casing
for file in {*.heic,*.HEIC}; do heif-convert $file ${file/%.*/.jpg}; done

Sample output:

$ for file in *.HEIC; do heif-convert $file ${file/%.HEIC/.jpg}; done
File contains 1 images
Written to IMG_2172.jpg
File contains 1 images
Written to IMG_2173.jpg
File contains 1 images
Written to IMG_2198.jpg
File contains 1 images
Written to IMG_2201.jpg
File contains 1 images
Written to IMG_2202.jpg
File contains 1 images
Written to IMG_2203.jpg
File contains 1 images
Written to IMG_2204.jpg

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Default Nginx Installation on Centos 7

NGINX as HTTP / HTTPS Proxysudo yum install epel-releasesudo yum install nginxsudo systemctl start nginxsudo…

Installing VNC on Centos 5.3

Install VNC server package upon server setup, then run in include GNOME desktop environment: #…

Bash Shell: Rename Files – Prepend and Append

Pre-pending # Prepend any file that doesn't have the word "/thumbs_" in its full path…