chunky-dump-reader
v1.1.1
Published
A tiny util module to read Chunky dumps.
Downloads
3
Readme
chunky-dump-reader
This module exposes a function to get width, height, spp and render time from a Chunky render dump stream.
Installation
npm i --save chunky-dump-reader
Usage
const { getDumpInfo } = require('chunky-dump-reader')
getDumpInfo(dumpStream).then((info) => {
// info = {
// width width in pixels
// height height in pixels
// spp samples per pixel
// renderTime render time in ms
// }
})
License
The files included in this repository are licensed under the MIT license.