HEICAutoConverter J. Schell
Use this command to install HEICAutoConverter:
winget install --id=J.Schell.HEICAutoConverter -e HEICAutoConverter
winget install --id=J.Schell.HEICAutoConverter -e HEICAutoConverter
iPhones and iPads save photos in HEIC format, which many Windows apps and websites don't support. This tool sits in your system tray and automatically converts those photos to JPG as soon as they appear in your chosen folders — no extra steps needed.
winget install JSchell.HEICAutoConverter
Download HEICAutoConverter.exe from Releases and run it. No installation required.
git clone https://github.com/jschell/HEIC-convert.git
cd HEIC-convert
# Build (requires .NET 8 SDK)
dotnet build
# Or publish as self-contained single file
dotnet publish -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true
| Action | Purpose |
|---|---|
| Status | Current monitoring status and conversion counts |
| Pause / Resume | Temporarily stop or restart conversion |
| Convert Existing Files | Scan watched folders for existing HEIC files |
| Settings... | Open settings (also: double-click the tray icon) |
| Exit | Close the application |
Settings are stored in %APPDATA%\HEICAutoConverter\settings.json.
| Setting | Default | Description |
|---|---|---|
| Watch Folders | (none) | Directories to monitor for HEIC files |
| Output Strategy | Same Folder | Where to save converted JPGs |
| JPEG Quality | 95 | Output quality (1-100) |
| Original Files | Keep | Keep, delete, or archive originals |
| Include Subdirs | Yes | Monitor subdirectories recursively |
| Max Concurrent | 2 | Simultaneous conversions (1-8) |
| Skip Existing | Yes | Don't re-convert if JPG already exists |
| Start with Windows | No | Launch on system startup |
| Show Notifications | Yes | Balloon tips on conversion |
FileSystemWatcher detects new HEIC/HEIF files as they appearLogs are written to %APPDATA%\HEICAutoConverter\logs\ with daily rotation. Logs older than 30 days are automatically cleaned up.
HEIC-convert/
├── src/
│ ├── Core/ # Conversion engine, queue, file watcher, settings, logging
│ └── UI/ # System tray icon, settings window, notifications
├── tests/ # Unit tests (xUnit)
├── docs/ # Lessons learned, style guides
├── .github/workflows/ # CI and release automation
└── assets/icon.ico # Application icon