Single-File Export

One PNG, SVG, ICO, or ICNS at a chosen size.

Use Single-File Export when you need one asset, not a full bundle. Common cases: a favicon spot-check PNG, a marketing image, a store listing source, or dropping an ICO/ICNS into an existing project.

For a website or PWA, Web Assets is usually the better choice — it ships ICO, SVG, PWA PNGs, Apple touch icon, manifest, and install notes together.

Which format should I choose?

FormatChoose when…Size control
PNGYou need a raster at an exact pixel sizeYes (1–2048 px)
SVGYou need a scalable vector for modern browsers or design toolsNo — inherently scalable
ICOYou need a Windows favicon or legacy multi-size containerYes — source raster size before ICO encoding
ICNSYou need a macOS icon container for Xcode or ElectronYes — source raster size before ICNS encoding

PNG is the flexible default. SVG is best when the target supports vectors and you want one file at any display size. ICO and ICNS wrap multiple resolutions inside one file — the size you pick is the source canvas used to generate the container, not the only size inside it.

Size controls

PNG

  • Presets: 32, 64, 128, 256, 512 px, or a custom size up to 2048 px.
  • PNG export does not expose a quality slider. PNG is normally lossless; use the size control to choose the output dimensions.

SVG

No size control — export is the vector markup from your current settings. Text motifs are outlined to paths on export so the file does not depend on installed fonts.

ICO / ICNS

Size selects the source raster Favycons renders before building the container. Defaults are 256 px for ICO and 512 px for ICNS. Higher source sizes give the encoder more detail for downscaling inside the container.

Example use cases

GoalFormatSuggested size
Quick favicon readability checkPNG16 or 32
Apple touch icon without the web bundlePNG180
PWA install icon without the web bundlePNG192 or 512
App Store / Play marketing assetPNG1024
Drop into a design file or modern web stackSVG
One-off Windows .ico for an existing appICO256
One-off macOS .icns for an existing appICNS512

When not to use Single-File Export

  • Shipping a public website — use Web Assets so ICO, SVG, manifest, and touch icon stay in sync.
  • Store submission with many required sizes — use the matching Export Target (iOS, Android, Desktop) when available; see Choose an Export.