npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

icns-endec

v0.0.4

Published

ICNS encoder and decoder library

Downloads

2

Readme

ICNS encoder & decoder

This JavaScript library provides an encoder and decoder for ICNS files. At the moment the library is limited to PNG and JPEG 2000-based ICNS entries but it wouldn't be too difficult to expand it further in the future. This limits support to Mac OS 10.5 and up.

Encoding

icnsEndec.encode([IconEntry||Object])

The encode function takes an array of IconEntries or objects that provide an OSType and buffer field. It returns a Buffer containing the binary data of the ICNS file.

The OSType must match one of the supported ones on the Supported OSType Table. The buffer field must be a Buffer or an ArrayBuffer.

Example

const fsPromises = require('fs').promises
const icnsEndec  = require('icns-endec')

(async () => {
  // Encode ic07 and ic08 from PNG images.
  let icnsBuffer = icnsEndec.encode([
    {
      OSType: 'ic07',
      buffer: await fsPromises.readFile('myIcon-128x128.png'),
    },
    new icnsEndec.IconEntry('ic08', await fsPromises.readFile('myIcon-256x256.png')),
  ])
  
  // Write out our ICNS file.
  await fsPromises.writeFile('myIcon.icns', icnsBuffer)
})()

Decoding

icnsEndec.decode(Buffer||ArrayBuffer)

The decode function takes a Buffer or an ArrayBuffer that holds the binary data of an ICNS file. It returns an array of IconEntries.

Example

const fsPromises = require('fs').promises
const icnsEndec  = require('icns-endec')

(async () => {
  // Retrieve the icons as an array of IconEntries.
  let icns = icnsEndec.decode(await fsPromises.readFile('myIcon.icns'))
  
  // Write out all icons.
  for (let icn of icns) {
    await fsPromises.writeFile(`myIcon-${icn.OSType}.${icn.ext}`)
  }
})()

IconEntry

The IconEntry class stores a Buffer, OSType, extension, and image type, where applicable.

constructor(String, Buffer)

Example

let iconEntry = new IconEntry('ic14', await fsPromises.readFile('myPNG-1024x1024.png'))

buffer

Returns the IconEntry's buffer.

type

Returns the IconEntry's image data type. May be 'PNG' or 'JPEG2000'.

ext

Returns the IconEntry's file extension. May be 'png' or 'jp2'.

OSType

Returns the OSType of the IconEntry.

Supported OSType Table

| OSType | Supported| |-|-| | ICON | | | ICN# | | | icm# | | | icm4 | | | icm8 | | | ics# | | | ics4 | | | ics8 | | | is32 | | | s8mk | | | icl4 | | | icl8 | | | il32 | | | l8mk | | | ich# | | | ich4 | | | ich8 | | | ih32 | | | h8mk | | | it32 | | | t8mk | | | icp4 | | | icp5 | | | icp6 | | | ic07 | x | | ic08 | x | | ic09 | x | | ic10 | x | | ic11 | x | | ic12 | x | | ic13 | x | | ic14 | x | | ic04 | | | ic05 | | | icsB | | | icsb | |