icon_set_generator
simple cli tool to enable easy production of icon sets for your next application.
installation
- download the repo and add
bin/icon_set_generator.exe
to path:gh repo download powrfulcow89/icon_set_generator
or
- get the pub package:
dart pub add icon_set_generator
and build from source:
dart compile exe .binicon_set_generator.dart
or
- grab a prebuilt binary.
usage
icon_set_generator image.extension [-e] [-o] [-s] [-a] [-w] [-h]
-e, --extension option: extension to convert the set to.
-o, --output option: output directory.
-s, --set option: custom set of sizes
-a, --apple flag: generate icon sets for apple apps.
-w, --windows10 flag: generate icon sets for windows 10 apps.
-h, --help flag: shows the cli usage.
examples
- output a standard set from
favicon.png
:icon_set_generator favicon.png
- output the standard, apple and windows 10 sets from
logo.jpg
:icon_set_generator logo.jpg -a -w
- output a custom size set from
image.gif
to thesamples
folder inico
format:icon_set_generator image.gif -o samples --set "[10, 20, 30]" -e ico
Comments are closed.