432×432 PNG · 108 dp foreground
Design assets often have to ship at a single canonical size — an icon set, a profile picture, a thumbnail — because platforms or frameworks will reject anything off-spec. Android Adaptive Icon (Foreground) produces 432×432 PNG, the size the icon size expects.
| Output dimensions | 432×432 pixels |
|---|---|
| Aspect ratio | 1:1 (square) |
| Output format | PNG |
| Processing | 100% in your browser — no upload |
| Cost | Free, unlimited |
| Source | Official guidelines |
Audience: every Android app on every form factor.
How Android launcher icons ranks images: OS-level icon-mask compositor (Adaptive Icons since Android 8). Posting at the platform's exact native dimensions (432×432 px) preserves your original framing and avoids the softening that happens when the platform's own resampler runs to fit its expected size.
Platform-specific note: Android adaptive icons are 108×108 dp with a 72×72 dp safe zone; the platform clips to circle, squircle, or rounded square depending on the launcher theme.
This preset is a deterministic recipe — every step has fixed parameters so the result is byte-identical across runs of the same input.
Android Adaptive Icon (Foreground) crops your input to 1:1 and resizes it to 432×432 px as PNG — a 186-kilopixel output. The work runs through canvas APIs and a WebAssembly image-encoder; the source image is decoded into an off-screen canvas, transformed in place, and re-encoded without any network upload.
Design deliverables to clients often require an exact pixel-size; this preset's deterministic output makes the deliverable repeatable. The browser-side path also means the file never leaves your device — relevant when the input contains personally identifiable information, screenshots of private documents, ID scans, or proprietary product photography.
432×432 px, saved as PNG.
The design this preset targets uses 1:1 framing. For passport photos this matches the printed-photo standard; for social posts it's the safe ratio that fills the feed without horizontal cropping.
PNG preserves hard edges and transparency that JPEG would smear. Icons, logos, and screenshots compress better as PNG when the image isn't photographic.
No. This preset runs entirely in your browser using WebAssembly + canvas APIs — no server round-trip. You can verify this in your browser's network panel: only static asset requests, no image upload. The file never leaves your device.