1.0.2 • Published 4 years ago

ico-tools v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

TODO

  • Describe supported input formats
  • Document specifics of ICO variations supported
  • Add output size options to CLI

Build

Build an ICO file with multiple resolutions from a single PNG.

npm install ico-tools
const { build } = require('ico-tools');

const inputFileData = await fs.readFile('input.png');
const imageBuffer = await build(inputFileData, icoOptions);
await fs.writeFile('output.ico', imageBuffer);

Parse

Parse and return detailed metadata from an ICO in JSON format.

const { parse } = require('ico-tools');

const inputFileData = await fs.readFile('output.ico');
const data = await parse(inputFileData);
{
  "header": {
    "reserved": 0,
    "imageType": 1,
    "imageTypeName": "ICO",
    "imageCount": 3
  },
    <-- trimmed -->
}

CLI

Wrapper to use the Build and Parse functions from the command line.

Usage: ico-tools [options] [command]

Options:
  -V, --version                     output the version number
  -h, --help                        display help for command

Commands:
  build [options] <input> <output>
  parse <input>
  help [command]                    display help for command
Usage: ico-tools build [options] <input> <output>

Options:
  -d, --debug  debug log messages
  -h, --help   display help for command
Usage: ico-tools parse [options] <input>

Options:
  -h, --help  display help for command
1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago