Frequently Asked Questions (FAQ)

What's the best source image format to use (PNG, SVG, JPG)?

For maximum quality, the short answer is: use SVG whenever possible.

Why does the ZIP package include so many different files? Don't I just need favicon.ico?

The favicon.ico file is the legacy format, and it's still important for maximum browser compatibility. However, the modern web ecosystem requires multiple icons for different platforms:

IcoSmith generates them all so your site will look professional on every platform, with no extra effort.

Are my files safe? Where is my image uploaded?

Nowhere. IcoSmith is a 100% client-side tool.

This means all image processing happens directly in your browser, on your own computer. Your image is never sent over the internet to a server. This approach guarantees both total privacy and maximum speed.

How does IcoSmith keep icons sharp at 16x16 pixels?

It's not just a resize. A standard resize of a large image to 16x16 pixels inevitably causes blurring. We use a two-step process: first, we resize the image using high-quality algorithms. Then, we apply a custom sharpening filter. This filter enhances the edges and contours of the image, counteracting the blur and restoring clarity.

What’s the right way to add the favicons to my HTML?

After conversion, IcoSmith generates a ready-to-use HTML snippet. Just copy and paste it inside your site's <head> tag. It looks like this:

<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">

This code covers all modern use cases. For more details, check out our best practices guide.