Open ICNS File
Apple macOS Icon Format - View, Convert & Create
🎯 Quick Answer
Mac: Double-click the ICNS file to open it in Preview. Windows: Use IrfanView (with plugins), GIMP, or convert online at CloudConvert.com.
What is an ICNS File?
ICNS (Apple Icon Image) is macOS's native icon format, equivalent to Windows ICO files. Unlike simple image files, ICNS is a container that stores multiple versions of the same icon at different sizes and resolutions.
Why Multiple Sizes?
macOS needs different icon sizes for different contexts:
- 16x16 / 32x32 - Finder list view, menu bars
- 128x128 - Finder icon view
- 256x256 - Cover Flow, large icons
- 512x512 - Quick Look previews
- 1024x1024 - Retina displays, App Store
Each size also has a @2x version for Retina displays, so a complete ICNS file contains 10 different images.
Where Are ICNS Files Used?
- Application icons (what you see in Dock and Finder)
- Folder custom icons
- Document type icons
- System icons and preferences
How to Open ICNS Files on Mac
macOS handles ICNS files natively with multiple options:
Method 1: Preview (Quickest)
- Double-click the ICNS file
- Preview opens showing all icon sizes in the sidebar
- Click any size to view it
Method 2: Quick Look
- Select the ICNS file in Finder
- Press Space to preview
- Shows the largest icon size
Method 3: Get Info
- Right-click the ICNS file
- Select Get Info
- The icon appears in the top-left corner
How to Open This type Files on Windows
Windows doesn't natively support ICNS, but several free tools work well:
Option 1: IrfanView (Free)
- Download IrfanView from irfanview.com
- Download the Plugins package (includes ICNS support)
- Install both
- Open the The extension file with IrfanView
- Use File → Save As to convert to PNG or ICO
Option 2: GIMP (Free)
- Download and install GIMP from gimp.org
- File → Open → Select the ICNS file
- GIMP will ask which icon size to import
- Export as PNG, JPG, or other formats
Option 3: Online Converters
No software installation needed:
- CloudConvert.com - Reliable, supports batch conversion
- Convertio.co - Simple interface
- iConvert Icons - Specialized for icon formats
How to Convert The file to PNG
Converting This type to PNG lets you use Mac icons in other contexts:
On Mac (Preview)
- Open the ICNS file in Preview
- In the sidebar, select the icon size you want
- File → Export
- Choose PNG format
- Save
On Mac (Terminal - All Sizes)
Extract all icon sizes at once:
# Create iconset folder from ICNS iconutil -c iconset myicon.icns # This creates a folder with all PNG sizes: # icon_16x16.png, icon_16x16@2x.png, icon_32x32.png, etc.
On Windows (GIMP)
- Open ICNS in GIMP
- Select the desired icon size when prompted
- File → Export As → Choose PNG
How to Create ICNS Files
Creating ICNS files requires generating all required sizes from a source image.
Requirements
- Start with a 1024x1024 PNG (or larger)
- Use a square image with transparency
- Ensure it looks good at small sizes
Method 1: Img2icns (Mac - Easy)
- Download Img2icns from img2icnsapp.com
- Drag your PNG onto the app
- Click Create
- ICNS file is generated with all sizes
Method 2: iconutil (Mac - Terminal)
- Create a folder named
MyIcon.iconset - Add PNG files with specific names:
icon_16x16.png icon_16x16@2x.png icon_32x32.png icon_32x32@2x.png icon_128x128.png icon_128x128@2x.png icon_256x256.png icon_256x256@2x.png icon_512x512.png icon_512x512@2x.png
- Run:
iconutil -c icns MyIcon.iconset
Method 3: Xcode Asset Catalog
For app developers, Xcode's asset catalog is the standard approach. Add an AppIcon set and drag images to each size slot.
How to Convert ICO to ICNS (Windows Icons to Mac)
Moving icons between Windows and Mac:
- Open the ICO file in GIMP or IrfanView
- Export as PNG (largest size available)
- Use Img2icns or iconutil to create ICNS
Or use online tools like iConvert Icons for direct ICO → This file conversion.
Programs That Open ICNS Files
| Program | Platform | Best For | Price |
|---|---|---|---|
| Preview | Mac | Viewing, basic export | Free |
| Img2icns | Mac | Creating ICNS easily | Free |
| IrfanView | Windows | Viewing, converting | Free |
| GIMP | All | Editing, converting | Free |
| Xcode | Mac | App development | Free |
| IconWorkshop | Windows | Professional icon editing | Paid |
Troubleshooting Such files Files
Problem: ICNS shows as blank or generic icon
Solution: The ICNS may be corrupted or incomplete. Try opening in GIMP to see if any data is recoverable. If created recently, regenerate from source PNG.
Problem: Preview shows only one size
Solution: Check the sidebar in Preview - all sizes should be listed. If only one exists, the ICNS wasn't properly created with all sizes.
Problem: Custom folder icon won't apply
Solution: Copy the icon image (⌘+C), select the folder, Get Info (⌘+I), click the icon in the top-left, and paste (⌘+V).
Problem: ICNS file too large
Solution: ICNS files with all sizes typically run 500KB-2MB. If much larger, the source images may not be optimized. Re-export PNGs with compression before creating ICNS.
ICNS vs ICO: Mac vs Windows Icons
| Feature | ICNS (Mac) | ICO (Windows) |
|---|---|---|
| Max Size | 1024x1024 | 256x256 (standard) |
| Retina Support | Yes (@2x) | No |
| Compression | Yes | Optional |
| Typical File Size | 500KB-2MB | 50-200KB |
| Format Type | Container (PNG inside) | Container (BMP/PNG inside) |