png-chunks-extract
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/png-chunks-extract package

1.0.0 • Public • Published

png-chunks-extract

stable

Extract the data chunks from a PNG file.

Useful for reading the metadata of a PNG image, or as the base of a more complete PNG parser.

Usage

NPM

chunks = extract(data)

Takes the raw image file data as a Uint8Array or Node.js Buffer, and returns an array of chunks. Each chunk has a name and data buffer:

[
  { name: 'IHDR', data: Uint8Array([...]) },
  { name: 'IDAT', data: Uint8Array([...]) },
  { name: 'IDAT', data: Uint8Array([...]) },
  { name: 'IDAT', data: Uint8Array([...]) },
  { name: 'IDAT', data: Uint8Array([...]) },
  { name: 'IEND', data: Uint8Array([]) }
]

License

MIT, see LICENSE.md for details.

/png-chunks-extract/

    Package Sidebar

    Install

    npm i png-chunks-extract

    Weekly Downloads

    25,169

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • hughsk