Forum Discussion
Help! How do I convert HEIC to JPG in batches on Windows 11?
- Jan 21, 2025
I had the same issue with HEIC photos when I transferred over 200 pictures from my iPhone to my Windows 11 PC—it was a nightmare trying to convert them one by one. Then I found TuneBro HEIC Converter, and it saved me! It’s super simple to use, converts in batches, keeps the image quality, and I didn’t have to worry about privacy or ads.
I followed this tutorial:
https://www.appleinsidez.com/batch-convert-heic-to-jpg
Previously, I needed to convert HEIC to JPG in batches, so I used a PowerShell script to do it. I wrote a simple script to process the HEIC files in a folder in a loop and automatically convert them to JPG. Although the operation requires some technical skills, it is efficient and hassle-free!
The following is an example of a script that uses PowerShell to convert HEIC to JPG in batches (ImageMagk tool needs to be installed and environment variables configured):
# Set the input and output folder paths
$InputFolder = "C:\Path\To\HEIC_Folder"
$OutputFolder = "C:\Path\To\JPG_Folder"
# Create the output folder if it doesn't exist
if (!(Test-Path $OutputFolder)) {
New-Item -ItemType Directory -Path $OutputFolder
}
# Loop through all HEIC files in the input folder and convert to JPG
Get-ChildItem -Path $InputFolder -Filter *.heic | ForEach-Object {
$InputFile = $_.FullName
$OutputFile = Join-Path $OutputFolder ($_.BaseName + ".jpg")
# Use Images "Images " command for conversion
Images convert "$InputFile" "$OutputFile"
Write-Host "Converted: $InputFile -> $OutputFile"
}