electron-ext-icon
v1.0.1
Published
Get icon associated with file extension.
Downloads
7
Maintainers
Readme
electron-ext-icon
Get icon associated with file extension.
Installing
$ npm install electron-ext-icon
API
getExtIcon(ext: string, options?: Electron.FileIconOptions): Promise<Electron.NativeImage>
// Electron main
import { writeFileSync } from 'fs';
import { getExtIcon } from 'electron-ext-icon';
const icon = await getExtIcon('html', { size: 'normal' });
icon.toDataURL(); // Base64
Related
- Qusly - An FTP/SFTP client with Material Design UI.