1.2.2 • Published 1 year ago

make-icns v1.2.2

Weekly downloads
8
License
MIT
Repository
github
Last release
1 year ago

make-icns

npm version license dependencies

make-icns is a CLI that converts a single PNG image into a ICNS image. It does this very quickly with very good quality! This CLI is designed to be simple to use on your local machine and to implement in other projects.

Installation

You may need to use sudo to install the package globally. If you get an error installing with sudo, you can try to add--unsafe-perm to the command. This CLI has been tested on macOS Ventura and Ubuntu 18.04 (LTS).

$ npm i -g make-icns

After installing the cli globally or on your project, you are ready to use it.

Usage

In order to get a good quality icon, it is highly recommended that the picture be at least 1024x1024 pixels.

This command will convert your PNG into an ICNS in the destination directory. The generated ICNS file will by default take the name of the PNG file. Note that the new image will also override any ICNS file with the same name and extension in the destination directory.

Command:

$ mk-icns <png-file-path> <destination-directory>

Options:

OptionsDesriptionType
-nName the generated ICNS filestring
-h, --help, helpShow help-

Example:

$ mk-icns /path/to/pngFile.png /destination/directory -n "This_Is_An_ICNS_File"

Author

  • Dang Khoa Chiem - dkchiem

License

This project is licensed under the MIT License - see the LICENSE file for details