image-encode
image-encode copied to clipboard
ReferenceError: document is not defined
I run in node.js and use webpack to package, but I throw an error. How can I solve it?
import fs from 'fs';
let encode = require('image-encode')
// create a file with chess pattern
fs.writeFileSync(
'out.png',
Buffer.from(encode([0,0,0,255, 255,255,255,255, 255,255,255,255, 0,0,0,255], [2, 2], 'png'))
)
ReferenceError: document is not defined