install pnpm i image-rs usage import {decode} from 'image-rs' const buf = fs.readFileSync('./assets/win.jpg') const { width, height, channel, pixels } = decode(buf) expect(width * height * channel).toEqual(pixels.length)