What Does This Icon Converter Do?
This icon converter takes one source image and redraws it as a set of square PNG files at the standard icon sizes: 16x16, 32x32, 48x48, 64x64, 128x128, and 256x256. You choose which sizes you want, the browser renders each one on its own canvas, and you download the results as individual PNG files. The 16, 32, and 48 pixel sizes are selected by default because those are the dimensions browsers and desktop operating systems reach for most often when showing a site icon.
It is worth being precise about the output, because favicon tooling is full of overlapping formats. This tool produces PNG files and nothing else. It does not build a multi-resolution .ico container, it does not emit an Apple touch icon set, an Android adaptive icon, or a web manifest, and it does not trace your raster image into SVG. If your target is a browser tab, the 32x32 PNG referenced from a link tag is enough for every current browser. If you specifically need a .ico file, generate the sizes here and combine them with a desktop icon editor.
Everything runs locally. The image is read into an object URL, drawn onto a canvas element, and exported with the browser's own PNG encoder. No upload happens at any point, so an unreleased logo or a client's brand mark never leaves the machine you are working on.