Skip to content

Instantly share code, notes, and snippets.

@sergioPerez-e
Last active March 2, 2025 10:34
Show Gist options
  • Save sergioPerez-e/24a59579fe6e0581c613ee53386eaf38 to your computer and use it in GitHub Desktop.
Save sergioPerez-e/24a59579fe6e0581c613ee53386eaf38 to your computer and use it in GitHub Desktop.
Convert HEIC to JPG

Convert HEIC to JPG

How to Convert HEIC to JPG, tested on Fedora 37

Installation

The lastest version with DNF donesn't work. Install with YUM

sudo yum install libheif-1.13.0

Process to Convert

for f in *.HEIC; do heif-convert -q 100 $f $f.jpg; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment