Multi-Platform Export
Zapicon generates every icon size and format required by the major platforms. You select the platforms, and the app produces a ready-to-use ZIP package.
Supported platforms
| Platform | Primary use | Key output |
|---|---|---|
| iOS | iPhone / iPad apps | AppIcon.appiconset with Contents.json |
| Android | Native and Flutter apps | mipmap-mdpi through mipmap-xxxhdpi |
| macOS | Mac apps | PNG sizes + icon.icns |
| Windows | Desktop apps | icon.ico |
| Web | Favicon and PWA | favicon.ico, apple-touch-icon.png, PWA PNGs |
| Tauri | Tauri desktop apps | Complete icon set for the project |
| Flutter | Cross-platform apps | Android mipmap + iOS appiconset |
How to export
- Finish editing your icon.
- Click Next to open the export panel.
- Toggle the platforms you need.
- Click Export and choose a destination folder.
- Wait for the progress indicator to complete.
Platform output structure
iOS
iOS/
└── AppIcon.appiconset/
├── Contents.json
├── 20x20@2x.png
├── 20x20@3x.png
├── ...
└── 1024x1024@1x.pngAndroid
Android/
├── mipmap-mdpi/
│ └── ic_launcher.png
├── mipmap-hdpi/
│ └── ic_launcher.png
├── ...
└── mipmap-xxxhdpi/
└── ic_launcher.pngmacOS
macOS/
├── icon_16x16.png
├── icon_16x16@2x.png
├── ...
└── icon.icnsCustom platforms
Need a platform that is not in the list? Create a custom platform and define your own sizes and file names. Free users can create 1 custom platform with up to 10 paths. Pro users can create unlimited custom platforms with unlimited paths.
Last updated