Electron Forge & DPI Generator

Generates Forge-compliant binaries AND High-DPI assets (@1x to @5x).

Drop a 1024x1024 PNG here
(Click to browse)
1. App Icons

For Windows and macOS Application Icons.

2. High-DPI Assets

Includes @1x, @2x, @3x, @4x, @5x for UI elements.

Step 3: Implementation Guide

For high-density displays, use the base name in your code:

// Electron automatically picks icon@2x.png on Retina
const icon = nativeImage.createFromPath('assets/icon.png');
const tray = new Tray(icon);