Step-by-step instructions
- 1
FormatDrop (browser, produces single-size ICO)
Upload your SVG to FormatDrop and select ICO as the output. FormatDrop converts server-side. For favicons, you'll want to generate the ICO at 32×32 or 48×48 to look sharp at standard display sizes. Download and place the file as `favicon.ico` in your website's public root directory.
Go to converter - 2
ImageMagick: multi-size ICO (recommended for Windows apps)
Install ImageMagick: `brew install imagemagick` (Mac) or `sudo apt install imagemagick inkscape` (Ubuntu for SVG rasterization). Generate a proper multi-size ICO: `magick -background none -resize 256x256 icon.svg -resize 48x48 -resize 32x32 -resize 16x16 favicon.ico`. This creates an ICO with multiple embedded sizes. Windows uses the most appropriate size for each display context (taskbar, file explorer, window title bar).
- 3
Inkscape + ImageMagick pipeline (best quality)
Inkscape renders SVG with correct font and filter handling: `inkscape icon.svg --export-png=256.png --export-width=256; inkscape icon.svg --export-png=48.png --export-width=48; inkscape icon.svg --export-png=32.png --export-width=32; inkscape icon.svg --export-png=16.png --export-width=16`. Then combine: `magick 256.png 48.png 32.png 16.png favicon.ico`. This two-step approach handles SVG features like filters and foreignObject that ImageMagick's SVG renderer misses.
- 4
realfavicongenerator.net (web tool, comprehensive)
Go to realfavicongenerator.net. Upload your SVG. The tool generates a complete favicon package: favicon.ico (multi-size), apple-touch-icon.png, android-chrome icons, and the required HTML meta tags. Download the package and add the HTML tags to your <head>. This tool is the gold standard for favicon generation — it handles every platform's requirements in one step.
Why convert SVG to ICO?
SVG is the ideal source for icons — infinitely scalable, editable, version-controlled. ICO is the required output for Windows and legacy systems. One conversion covers both worlds.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
What sizes should I include in a favicon.ico?
Can I use SVG directly as a favicon?
Why does my ICO look blurry on Windows?
No account. No upload. Works in any browser.