decgbi
v1.0.1
Published
A library for decompressing CgBI files (used in some iOS images) into PNG format.
Downloads
28
Readme
decgbi
A JS library to decompress CgBI files to PNG.
Documentation live at https://s0n1c.ca/decgbi
Installation
% bun i decgbiUsage
decgbi is available via server-side (Bun & Node.js), as well as in browser.
import { decgbi } from 'decgbi';
const orig = new Uint8Array(...); // the original CgBI data
const png = decgbi(orig); // the decompressed PNG data, as Uint8Array