HEIC to JPEG

payal23j

Elite Member
Jr. VIP
Joined
Aug 19, 2009
Messages
2,808
Reaction score
854
Hi,
I transferred so many pics from my phone to laptop but it's showing HEIC, how can i convert that or i can see those pics in my laptop.
Let me know if anyone have any tools or any software i can install in my laptop and it will works.
 
Open PowerShell, go to the folder where your HEIC files are located:

Code:
cd "C:\Users\YourFolder\HEIC_Photos"

Convert all HEIC files to JPEG (100% quality, sRGB color profile, auto orientation):

Code:
Get-ChildItem -Recurse -Include *.heic,*.heif | ForEach-Object {
    $out = [System.IO.Path]::ChangeExtension($_.FullName, ".jpg")
    magick $_.FullName -auto-orient -quality 100 -colorspace sRGB $out
}
 
  • Like
Reactions: RK
I am getting this error...

1756809576000.png
 
go to > https://cloudconvert.com/and HIEC>JPEG/PNG
 
Doesn't it work in gimp/photoshop/ other editors? Preferably photoshop, then you can record a convert action, and bactch play it in a directory.
 
You can just search your browser HEIC to JPEG, then will get so many websites, just try a one and you can convert
 
Back
Top