ICO to HEIC Converter
Inspect your ICO file in the browser and follow step-by-step guides to convert it to HEIC using ImageMagick, GIMP, or FFmpeg.
Browser limitation
Browsers cannot encode HEIC due to codec patent restrictions. This inspector reads your ICO file locally — then use the guides on the right to convert with a desktop tool.
ICO File Inspector
File Metadata
- File name
- File size
- Embedded frames
- Largest frame
- All sizes
Embedded Sizes
All frames detected in this ICO file.
How to Convert ICO to HEIC
Choose a free desktop tool below. All methods preserve transparency and run entirely offline.
-
1
Install ImageMagick
macOS:
brew install imagemagick— Windows: download the installer from imagemagick.org — Linux:sudo apt install imagemagick libheif-dev -
2
Verify HEIC support
magick -list format | grep -i heicYou should see a line containing
HEIC. If not, install libheif and recompile or reinstall. -
3
Convert a single ICO frame (largest size)
magick icon.ico[0] -quality 85 output.heic[0]selects the first (largest) frame. Use[1],[2]… for other frames. Quality 85 is a good balance of size and sharpness. -
4
Batch convert all ICO files in a folder
magick mogrify -format heic -quality 85 *.icoThis overwrites the originals with HEIC versions in-place. Make a backup first or use
magick convertfor individual files.
Quality vs. File Size Tips
Icons (16–48 px)
Use quality 90+. Small flat-color images need higher quality settings to preserve sharp pixel edges.
Medium (64–128 px)
Quality 80–85 strikes the best balance — visually lossless at 40–50% smaller than PNG.
Large (256 px+)
Quality 75–80 works well. HEIC excels at this size — typically half the file size of JPEG at equal visual quality.
Summary
Inspect your ICO file in the browser and follow step-by-step guides to convert it to HEIC using ImageMagick, GIMP, or FFmpeg.
How it works
- Drop your ICO file into the inspector — it reads the binary header locally, lists all embedded sizes, and shows file metadata.
- No file is ever sent to a server; all inspection runs in your browser via the FileReader API.
- Choose a conversion method: ImageMagick, GIMP, or FFmpeg.
- Follow the command or GUI steps shown for your chosen tool.
- The output .heic file is saved directly to your computer by the desktop tool.
- HEIC files offer 40–50% smaller size than JPEG at comparable quality, making them ideal for Apple devices and modern web delivery.
Use cases
- Convert Windows application icons (ICO) to HEIC for use in Apple ecosystems.
- Prepare favicon assets in HEIC/HEIF format for next-generation web manifests.
- Reduce icon file sizes compared to PNG while preserving transparency.
- Batch-convert entire icon libraries to HEIC using ImageMagick scripting.
- Inspect an ICO file to discover all embedded resolutions before selecting the best one to export.
- Convert ICO exports from design software to HEIC for sharing on iOS or macOS.
- Use FFmpeg to script automated ICO-to-HEIC pipelines in CI/CD workflows.
- Verify ICO file integrity and embedded frame count without third-party software.