Share via

How can I convert HEIC to JPG in batches in Windows 11? The online method is too slow, please help me!

Anonymous
2025-04-14T00:42:05+00:00

Hello everyone, I need help urgently!

I have a bunch of photos copied from my iPhone, all in HEIC format, but I can't open them on my Windows 11 computer, and I can't use them directly. Now the project is about to end, and I have to quickly convert HEIC to JPG format, and it would be best if I can do it in batches, otherwise I can't finish converting them one by one...

Does anyone know if there is any simple method or tool on Windows 11 that can be used to convert HEIC to JPG? It's better not to be too complicated, and free is better!

Please help me, it's really urgent!

Windows for home | Windows 11 | Files, folders, and storage

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

6 answers

Sort by: Most helpful
  1. Anonymous
    2025-04-14T10:06:52+00:00

    There are many ways to convert heic to jpg on Windows 11. Here are a couple of tips you should follow to get the best result from it.

    First, not all image conversion tools support HEIC out of the box. For example, FFmpeg requires a build that includes HEIC (typically via libheif). If using ImageMagick, you may need the HEIF Image Extensions from the Microsoft Store for full functionality.

    Most HEIC to JPGE converter tools allow you to control output quality. For FFmpeg, you can adjust JPEG quality with parameters like -qscale:v (lower numbers yield higher quality). With ImageMagick, similar options are available. Explore the documentation of your tool for advanced options like resolution control, metadata handling, and compression settings.

    Also check if the conversion process retains important metadata (e.g., date, location, camera settings). Some converters require explicit commands to copy metadata to the new file.

    P.S. If you need to batch convert heic to jpeg on Windows 11 at once, consider scripting with loops in Command Prompt or PowerShell to automate the process. For instance, a simple PowerShell loop using ImageMagick might look like:

    Get-ChildItem -Filter *.heic | ForEach-Object {
    
        $output = $_.BaseName + ".jpg"
    
        magick $_.FullName $output
    
    }
    

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2025-04-14T06:21:45+00:00

    You can use the free command line tool (ImageMagic) for converting heic to jpg on Windows 11.

    First, visit the official ImageMagick website and download the appropriate Windows installer.

    Next, on Windows 11, you also need the HEIF Image Extensions from the Microsoft Store so that ImageMagick (which uses system libraries) can properly read HEIC files.

    To convert .heic to .jpg on Windows 11, open Command Prompt. Run the following command (for ImageMagick version 7 and above, the magick command is used):

    magick input.heic output.jpg
    

    Replace input.heic with the path to your HEIC file and output.jpg with your desired output filename.

    This method covers the most needs on Windows 11 for converting HEIC images to JPG through the command line.

    Was this answer helpful?

    0 comments No comments
  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  4. Rodrigo Queiroz 77,755 Reputation points Independent Advisor
    2025-04-14T02:23:23+00:00

    Hi,

    I'm Rodrigo and I'll help you.

    To open and edit .heic files on Windows, you must install these two extensions from Microsoft Store:

    https://apps.microsoft.com/detail/9NMZLZ57R3T7

    https://apps.microsoft.com/detail/9PMMSR1CGPWG

    If you still want a converter tool, this free tool adds an option to the context menu to convert .heic files to .jpg

    https://copytrans.studio/copytrans-heic-is-now-...

    Standard Disclaimer: This is a non-Microsoft website. The page appears to be providing accurate, safe information. Watch out for ads on the site that may advertise products frequently classified as a PUP (Potentially Unwanted Products). Thoroughly research any product advertised on the site before you decide to download and install it.

    Was this answer helpful?

    0 comments No comments
  5. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more