Forum Discussion
radmiru
Jul 04, 2025Iron Contributor
How do I convert HEIC files to JPEGs in Windows 10?
It is the first time I came across .HEIC pictures. I don't know why the photos from my iPhone 16 Pro Mac are saved as .heic. When I imported the photos to my Windows 10 PC as backup, the heic images ...
ReedHudson
Jul 04, 2025Iron Contributor
heic2any is another possible solution. it is a client-side JavaScript library, built with TypeScript, used to convert HEIC/HEIF image files into more widely supported formats like JPEG, PNG, or GIF. It runs entirely in-browser using Web APIs and Web Workers.
Step 1: Download and install Node.js in Windows 10.
Step 2: heic2any HEIC Converter via npm, stands for Node Package Manager. It is the default package manager for Node.js, and it's used to install, manage, and share JavaScript libraries or tools.
npm install heic2any
Step 3: Convert a heic file to jpg.
heic2any -i "C:\Input\image.heic" -o "C:\Output\image.jpg"
To convert multiple heic files to jpg in a folder:
heic2any -i "C:\Input\*.heic" -o "C:\Output"
✅ Benefits:
💡 Free and open-source.
⚡ Fast and supports batch HEIC to JPEG conversion.
✅ Works purely from the command line (no GUI automation).