All Projects → sprout2000 → elephicon

sprout2000 / elephicon

Licence: MIT license
A GUI wrapper for png2icons.

Programming Languages

typescript
32286 projects
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to elephicon

ICNS2ICO
ICNS2ICO lets you easily convert icons from the Apple's ICNS format to the Windows ICO format.
Stars: ✭ 17 (-81.11%)
Mutual labels:  icon, ico, icns
icoextract
Extract icons from Windows PE files (.exe/.dll)
Stars: ✭ 56 (-37.78%)
Mutual labels:  icon, ico
Rsrc
Tool for embedding .ico & manifest resources in Go programs for Windows.
Stars: ✭ 767 (+752.22%)
Mutual labels:  icon, ico
XcoatOfPaint
Replace your Xcode icon with colorful variants
Stars: ✭ 131 (+45.56%)
Mutual labels:  icon, icns
Getfavicon
获取网站的Favicon图标并显示在你的网页上.
Stars: ✭ 45 (-50%)
Mutual labels:  icon, ico
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (-28.89%)
Mutual labels:  icon, ico
Picview
Fast Picture Viewer with compact UI, that can be hidden. Features image effects, galleries, image info and more. The app can automatically adjusts itself to your screen.
Stars: ✭ 259 (+187.78%)
Mutual labels:  desktop-app, ico
Quick Picture Viewer
🖼️ Lightweight, versatile desktop image viewer for Windows. The best replacement for the default Windows photo viewer.
Stars: ✭ 237 (+163.33%)
Mutual labels:  desktop-app, ico
vue-icon-font
IconFont plugin for Vuejs
Stars: ✭ 25 (-72.22%)
Mutual labels:  icon, ico
Perspec
Scriptable desktop app to correct the perspective of images
Stars: ✭ 523 (+481.11%)
Mutual labels:  desktop-app
html-mangareader
A lightweight offline CBZ/CBR and image viewer with full continuous scrolling
Stars: ✭ 84 (-6.67%)
Mutual labels:  desktop-app
Anything
Digital asset organizing tool for creators.
Stars: ✭ 19 (-78.89%)
Mutual labels:  desktop-app
joplin-plugin-tagging
Plugin to extend the Joplin tagging menu with a copy all tags and tagging dialog with more control.
Stars: ✭ 17 (-81.11%)
Mutual labels:  desktop-app
TinyChat
💬 Extra small chat client with GUI
Stars: ✭ 15 (-83.33%)
Mutual labels:  desktop-app
ImageActionSheet
iOS Native style action sheet like in Whatsapp with the option of showing icons. It is a complete implementation and does not use any private api of UIKit.
Stars: ✭ 20 (-77.78%)
Mutual labels:  icon
jdeploy
Developer friendly desktop deployment tool
Stars: ✭ 282 (+213.33%)
Mutual labels:  desktop-app
tray-item-rs
Multi-platform Tray Indicator
Stars: ✭ 145 (+61.11%)
Mutual labels:  icon
nw-angular-cli-example
An example of an Angular CLI app running in NW.js
Stars: ✭ 24 (-73.33%)
Mutual labels:  desktop-app
icon-generator
Generate icons and launch screens for your Adobe AIR projects.
Stars: ✭ 24 (-73.33%)
Mutual labels:  icon-generator
flutter-vector-icons
Customizable Icons for Flutter. Port of react-native-vector-icons
Stars: ✭ 75 (-16.67%)
Mutual labels:  icon

Elephicon

GitHub license GitHub all releases GitHub stars

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.

animation

🎁 Download

💻 macOS & GNU/Linux

You can download the latest version of Elephicon from the releases page here:
https://github.com/sprout2000/elephicon/releases

🖥️ Windows 10 & 11

You can get (or upgrade to) the latest version of Elephicon via winget:

winget install sprout2000.Elephicon

🌈 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 Language Code
Deutsch de Português pt
English en Русский ru
Italiano it Türkçe tr
日本語 ja Українська uk
Malayalam ml 简体中文 zh_CN

🛠️ Contributing

You can easily contribute to this repository by providing translation files.

  1. Create {your_LANG}.json in src/locales.
  src
  ├── @types
  ├── createMenu.ts
  ├── locales
+ │   ├── de.json
  │   ├── en.json
  │   └── ja.json
  ├── main.ts
  ├── preload.ts
  ├── setLocales.ts
  └── web
  1. 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 },
      },
    });
  };
  1. And then please send a pull request to this repository.

🎉 Contributors

Special Thanks to:

©️ Copyright

png2icons

MIT © idesis GmbH, Rellinghauser Straße 334F, D-45136 Essen

Elephicon

Copyright(c) 2020 sprout2000 and other contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].