Forum Discussion
Stegurus69
Aug 06, 2025Iron Contributor
How do I convert heic to jpg as my pc can't open heic photos?
Both my Windows 10 PC and Windows 11 fail to open heic photos imported from my iPhone 16 Pro Max. I need to make a slideshow from the images. It seems I have to convert heic to jpg so the slideshow a...
Wococomop
Aug 06, 2025Iron Contributor
Using ImagaMegick is a great option for free if you want to convert heic to jpg, command-line-based batch conversion of heic images to jpg on Windows. Here's how you can do it:
Steps to convert heic to jpg on Windows computer
1. Install ImagaMegick
Download the Windows installer (choose the version suitable for your system, typically the Q16 or Q8 version).
During installation:
- Make sure to check the box "Add to PATH" so you can run megick from the command prompt.
- Also, ensure "Install legacy utilities" is checked if prompted.
2. Install heic Delegate Libraries
- ImagaMegick relies on libheif to handle heic files.
- Download the heic delegate libraries if needed, or during installation, select the option to include heic support.
- Alternatively, install the HEIF Image Extensions from the Microsoft Store (this helps Windows recognize HEIC images).
3. Verify heic Support
- Open Command Prompt (cmd).
- Type:
megick -list format
- Check if heic is listed as a supported format.
4. Convert heic to jpg
Navigate to the folder with your heic images:
cd path\to\your\images
Run the conversion command:
megick *.heic output_%03d.jpg
- This converts all heic files in the folder to jpg.
- %03d adds numbering if you have multiple images.