Générateur d'Icônes d'Application

Générez toutes les tailles d'icônes d'application requises pour iOS, iPadOS, watchOS, macOS et Android. Redimensionnement de haute qualité, correctement formaté pour Xcode et Android Studio. 100% privé et gratuit.

Publicité
Publicité

An app icon generator creates properly sized icons for iOS, Android, and web applications from a single source image. App stores require icons in multiple dimensions (e.g., 29×29 to 1024×1024 for iOS, 48×48 to 512×512 for Android). This tool resizes your source icon to all required dimensions using the Canvas API, generating a complete icon set in seconds -- entirely in your browser.

Générez toutes les tailles d'icônes d'application sans téléverser votre fichier source

One 1024×1024 image → every size for iOS, Android, watchOS, and macOS. Xcode-ready AppIcon.appiconset and Android mipmap folders. All in your browser.

Toutes les plateformes
Xcode-ready
Gratuit illimité

Comment l'utiliser

  1. 1

    Préparez l'Icône

    Concevez une icône carrée de 1024x1024 pixels. N'ajoutez pas de coins arrondis ; le système d'exploitation de l'appareil appliquera le masque automatiquement.

  2. 2

    Téléverser

    Faites glisser votre fichier dans l'outil ci-dessus.

  3. 3

    Choisissez les Plateformes

    Sélectionnez iPhone, iPad, Watch, Mac ou Android.

  4. 4

    Télécharger

    Obtenez une seule archive .zip contenant tous les actifs organisés.

Le Moyen le Plus Simple de Redimensionner les Icônes d'Application

Prêt pour Xcode

Génère le dossier complet AppIcon.appiconset avec un fichier Contents.json valide. Faites simplement glisser et déposer dans votre Catalogue d'Actifs Xcode.

Compatible avec Android

Crée les dossiers mipmap Android standards (mdpi, hdpi, xhdpi, etc.) prêts à être collés dans le dossier res de votre projet Android Studio.

Redimensionnement de Haute Qualité

Utilise des algorithmes de redimensionnement avancés (Lanczos3 via Pica) pour garantir que vos icônes soient nettes et claires, même aux plus petites tailles.

Publicité

Understanding App Icon Requirements

Pourquoi les icônes d'application nécessitent plusieurs tailles

Mobile operating systems display app icons in many different contexts: the home screen, the app switcher, settings, notifications, the App Store/Play Store listing, and search results. Each context requires a different pixel dimension. iOS alone requires over 20 different icon sizes for a complete submission -- from 20×20 (notification on iPad) to 1024×1024 (App Store listing). Android uses adaptive icons that must be 108×108 with a 72×72 safe zone, plus legacy icons at multiple densities (mdpi: 48×48, hdpi: 72×72, xhdpi: 96×96, xxhdpi: 144×144, xxxhdpi: 192×192).

Creating each size manually in an image editor is tedious and error-prone. A source image that looks good at 1024×1024 might lose important detail when scaled to 29×29. The key is starting with a simple, bold design that works at all sizes -- avoid thin lines, small text, and intricate details that will disappear at small sizes. The source image should be at least 1024×1024 pixels (for iOS) or 512×512 pixels (for Android), in PNG format with no transparency (iOS doesn't allow transparent app icons).

For web applications (PWA), the requirements are simpler but still important. The manifest.json file references icons at 192×192 and 512×512, but additional sizes improve the experience when users add your site to their home screen. Apple Touch Icons (apple-touch-icon) should be 180×180 for the best quality on iOS devices. Favicon files should include 16×16, 32×32, and 180×180 sizes.

Publicité

Comment fonctionne la génération d'icônes

The tool uses the Canvas API to resize the source image to each required dimension. The source image is loaded into an Image object, then for each target size, a canvas is created at that dimension and the image is drawn using ctx.drawImage() with high-quality resampling (imageSmoothingQuality = 'high'). Each canvas is then exported as a PNG blob and packaged for download.

For iOS, the tool generates an icon set following Apple's naming convention (Icon-App-20x20@1x.png, Icon-App-20x20@2x.png, etc.) and can optionally create a Contents.json file for use in Xcode asset catalogs. For Android, the tool generates icons in the correct directory structure (mipmap-mdpi/, mipmap-hdpi/, etc.) for direct inclusion in the project's res/ folder. For web, it generates a favicon set and the necessary HTML meta tags.

Publicité

Comment cela se compare-t-il aux autres générateurs d'icônes ?

A side-by-side comparison of popular app icon generation tools.

FonctionnalitéNovaToolsAppIcon.coEasyAppIcon
Confidentialité (sans téléversement)OUI 100% navigateurN Téléverse vers le serveurN Téléverse vers le serveur
Jeu d'icônes iOSOUI Toutes les taillesOUIOUI
Jeu d'icônes AndroidOUI Toutes les densitésOUIOUI
Web/PWA iconsOUINN
Sans filigraneOUIN Gratuit avec filigraneN Publicités
Traitement instantanéOUIN File d'attenteN File d'attente

Server-based icon generators require uploading your source image. Our tool resizes icons locally using the Canvas API -- your brand assets never leave your device.

Questions fréquentes

Quelle taille d'image dois-je téléverser ?
Nous recommandons une image de 1024x1024 pixels. C'est la plus grande taille requise (pour l'icône marketing de l'App Store) et cela nous permet de réduire à des tailles plus petites tout en maintenant une haute qualité.
Est-ce que cela génère le fichier Contents.json pour Xcode ?
Oui. L'archive zip pour les plateformes Apple inclut la structure de dossiers correcte et le fichier JSON requis pour Xcode. Vous pouvez remplacer votre dossier AppIcon.appiconset existant par celui généré.
Mes données sont-elles privées ?
Oui. Tout le traitement d'image se fait localement dans votre navigateur en utilisant des technologies Web. Votre fichier source n'est jamais téléversé sur notre serveur.
Quelles plateformes sont prises en charge ?
The tool generates icons for iOS (iPhone and iPad), watchOS (Apple Watch), macOS (Mac apps), and Android. For Apple platforms, it produces the complete AppIcon.appiconset folder with all sizes required by the current Xcode version, including 20px, 29px, 40px, 58px, 60px, 76px, 80px, 87px, 120px, 152px, 167px, 180px, 1024px, and various macOS sizes. For Android, it produces the standard mipmap folder structure (mdpi, hdpi, xhdpi, xxhdpi, xxxhdpi) with the correct launcher icon sizes (48px, 72px, 96px, 144px, 192px) and the adaptive icon foreground layer.
Quel algorithme de redimensionnement est utilisé ?
The tool uses the Pica library with Lanczos3 resampling, which is one of the highest-quality downscaling algorithms available. Lanczos3 uses a 3-lobe sinc filter to preserve sharp edges and fine details while avoiding aliasing artifacts. This is significantly better than the default browser image resizing (which uses bilinear or nearest-neighbor interpolation) and comparable to professional image editing software. The result: your 16x16 icon looks crisp and readable, not blurry or pixelated, even when downscaled from a 1024x1024 source image.
Can I generate icons for Android adaptive icons?
Yes. For Android, the tool generates both the standard launcher icons (in mipmap folders) and the adaptive icon foreground layer. Adaptive icons were introduced in Android 8.0 (API 26) and consist of two layers: a foreground (your icon) and a background (a solid color or pattern). The tool generates the foreground layer at the required 108x108 dp (with 72x72 dp safe zone) for each density bucket. You will need to provide the background layer separately in your Android project's res/drawable folder.
Dois-je ajouter des coins arrondis à mon icône ?
No. You should upload a square image with sharp corners. iOS, Android, and other platforms automatically apply their own mask (rounded corners, squircle, circle, etc.) when displaying the icon. If you add rounded corners to your source image, the corners may appear as a thin border or halo when the OS applies its mask. The only exception is the App Store marketing icon (1024x1024), which in recent Xcode versions accepts a square image with transparent corners — but even here, Apple recommends uploading a square image and letting the system handle the masking.
Y a-t-il une limite de taille de fichier ?
There is no artificial file size limit. Since the tool processes your image locally, the practical limit depends on your device's available memory. A 1024x1024 PNG file is typically 500KB to 2MB, which is well within the capabilities of any modern device. If you upload an extremely large image (e.g., 4096x4096), the tool will automatically use it as the source but the processing time may increase slightly. For best performance, use a 1024x1024 source image as recommended.

Votre confidentialité est notre priorité

Cet outil fonctionne entièrement dans votre navigateur. Vos fichiers ne sont ni téléversés, ni stockés, ni analysés.

  • Nous ne téléversons, ne stockons ni n'analysons vos fichiers.
  • Tout ce que vous traitez reste sur votre appareil.
  • Il n'y a pas de traitement côté serveur, ni de stockage cloud, ni d'analyse.

Même si votre connexion internet tombe, vos fichiers restent en sécurité.

Vous pourriez aussi aimer

Guides utiles

Publicité