How to use the decode function from bindings
Find comprehensive JavaScript bindings.decode code examples handpicked from public code repositorys.
GitHub: Touched/indexed-png
14 15 16 17 18 19 20 21 22 23 24 25
function decode(data) { if (!(data instanceof Buffer)) { throw new Error('Input data must be a buffer'); } return bindings.decode(data); } module.exports = { encode,
1
2
0
+ 2 other calls in file
GitHub: CaramelFur/qoi-img
36 37 38 39 40 41 42 43 44 45
width: number; height: number; channels: QOIChannels; colorspace: QOIColorSpace; } { const result = addon.decode(data, convertChannels || 0); if (convertChannels !== undefined) result.channels = convertChannels; return result; }
0
2
1
bindings.createKey is the most popular function in bindings (8616 examples)