Elephicon
Elephicon, a GUI wrapper for png2icons, generates Apple ICNS and Microsoft ICO files from PNG files.
๐ Usage
- The ideal input is a 24-bit PNG file with 1024x1024 pixels and an alpha channel, but any other dimensions and most other PNG formats will do work.
- If you only need to create ICO files, 256ร256 pixels will be enough.
- It's also possible to create icon files from non-quadratic source PNGs.
- Various settings are available from the context menu.
๐ฅ Download
๐ป macOS
You can download the latest version of Elephicon from the releases page here:
https://github.com/sprout2000/elephicon/releases
๐ฅ๏ธ Windows 10 & 11
Download the latest version for Windows 10 and 11 at Microsoft Store.
๐ Embedded Sizes
Dimension | ICO | ICNS |
---|---|---|
16x16 | ||
16x16@2x | โ | |
24x24 | ||
32x32 | โ | |
32x32@2x | ||
48x48 | โ | |
64x64 | ||
72x72 | ||
96x96 | ||
128x128 | ||
128x128@2x | โ | |
256x256 | ||
256x256@2x | ||
512x512 | โ | |
512x512@2x |
๐ Supported Languages (App Menu)
Language | Code |
---|---|
Deutsch | de |
English | en |
Italiano | it |
ๆฅๆฌ่ช | ja |
Malayalam | ml |
Portuguรชs | pt |
ะ ัััะบะธะน | ru |
Tรผrkรงe | tr |
ะฃะบัะฐัะฝััะบะฐ | uk |
็ฎไฝไธญๆ | zh_CN |
๐ป Contributing
You can easily contribute to this repository by providing translation files.
- Create
{your_LANG}.json
insrc/locales
.
src
โโโ @types
โโโ createMenu.ts
โโโ locales
+ โ โโโ de.json
โ โโโ en.json
โ โโโ ja.json
โโโ main.ts
โโโ preload.ts
โโโ setLocales.ts
โโโ web
- Import the locale into
src/setLocales.ts
as follows:
import en from './locales/en.json';
import ja from './locales/ja.json';
+ import de from './locales/de.json';
export const setLocales = (locale: string): void => {
i18next.init({
lng: locale,
fallbackLng: 'en',
resources: {
en: { translation: en },
ja: { translation: ja },
+ de: { translation: de },
},
});
};
- And then please send a pull request to this repository.
๐ Contributors
Thanks go to these wonderful people
๐ฆ Privacy Policy
- Elephicon and the developers do NOT collect any personal information or privacy-related information about the user.
- Elephicon and the developers do NOT collect the information of files opened by Elephicon.
ยฉ๏ธ Copyright
png2icons
MIT ยฉ idesis GmbH, Rellinghauser Straรe 334F, D-45136 Essen
Elephicon
Copyright(c) 2023 sprout2000 and other contributors