Blog
Wild & Free Tools

SVG to PNG for Favicons — All Standard Sizes Free

Last updated: April 2026 5 min read
Quick Answer

Table of Contents

  1. The six sizes you need
  2. Export flow from SVG
  3. Design rules for small favicons
  4. The HTML to reference them
  5. Why not just use SVG as favicon
  6. Frequently Asked Questions

A modern website favicon is not one file — it's six PNGs at different sizes, plus a manifest.json referencing them. The standard sizes: 16×16 (browser tab), 32×32 (browser bookmarks), 48×48 (Windows shortcut), 180×180 (Apple touch icon), 192×192 (Android home screen), 512×512 (PWA install). All exported from the same SVG source. Here's the fastest way.

The six favicon sizes you actually need

SizeFile nameUsed by
16×16favicon-16.pngBrowser tabs
32×32favicon-32.pngBookmarks, Windows tile
48×48favicon-48.pngWindows desktop shortcuts
180×180apple-touch-icon.pngiOS home screen
192×192android-chrome-192.pngAndroid home screen
512×512android-chrome-512.pngPWA install, splash

Legacy favicon.ico is still recommended for compatibility with old browsers and some search engines — build it with an ICO generator from the 16 and 32 PNGs.

Exporting all sizes from one SVG

  1. Open the SVG to PNG converter.
  2. Upload your logo SVG.
  3. Set Background to Transparent. Every favicon size needs alpha.
  4. For each size, enter the pixel value in Custom width and click Convert. Download each PNG with the right name.
  5. Repeat six times. Takes about two minutes total.

Or — use our dedicated favicon generator, which accepts your SVG once and exports all six sizes plus the ICO and manifest.json in one click.

Sell Custom Apparel — We Handle Printing & Free Shipping

Design rules for 16×16 favicons

A logo that looks great at 512×512 can turn into a blurry mess at 16×16. Rules for small favicons:

The HTML to reference all sizes

In your site's <head>:

<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/x-icon" href="/favicon.ico">

Plus a site.webmanifest referencing the 192 and 512 PNGs for PWA installs:

{
  "icons": [
    { "src": "/android-chrome-192.png", "sizes": "192x192", "type": "image/png" },
    { "src": "/android-chrome-512.png", "sizes": "512x512", "type": "image/png" }
  ]
}

Why not just use an SVG as the favicon?

Modern browsers support SVG favicons via <link rel="icon" type="image/svg+xml" href="/favicon.svg">. Works in Chrome 80+, Firefox 41+, Safari 17+, Edge 80+.

But several places still need PNG:

Best practice: ship both. SVG favicon as primary, PNG set as fallback.

Generate All Favicon Sizes From One SVG

Drop your SVG, pick a size or use our favicon generator for all six at once. Free, browser-based.

Open Free SVG to PNG Converter

Frequently Asked Questions

What is the best size for a favicon in 2026?

Not one size — ship six: 16, 32, 48, 180, 192, and 512 pixels, plus a legacy favicon.ico. Each size targets a different platform. If you only ship one size, the others get upscaled or downscaled and look bad.

Can I use a transparent PNG favicon?

Yes, and you should. A transparent favicon adapts to both light-mode and dark-mode browser tabs. A favicon with a solid background stands out against the tab bar in an awkward way.

Does every browser support SVG favicons now?

Most do — Chrome, Firefox, Safari 17+, Edge. But iOS apple-touch-icon and Android manifest icons are still PNG-only in 2026. Ship both SVG and PNG for full coverage.

What resolution for Apple touch icon?

180×180 pixels. Apple recommended 152 until 2019, then 167, and finally standardized on 180. One 180×180 PNG covers all iPhone and iPad models.

Carlos Mendez
Carlos Mendez Photo Editing & Image Writer

Carlos has been a freelance photographer and photo editor for a decade, working with clients from local businesses to regional magazines.

More articles by Carlos →
Launch Your Own Clothing Brand — No Inventory, No Risk