mrmBot-Matrix/utils/gmbuffer.js

16 lines
693 B
JavaScript
Raw Normal View History

2019-09-13 20:02:41 +00:00
// workaround for a gm bug where it doesn't output buffers properly
// https://github.com/aheckmann/gm/issues/572#issuecomment-293768810
module.exports = (data) => {
return new Promise((resolve, reject) => {
data.stream((err, stdout, stderr) => {
if (err) return reject(err);
const chunks = [];
stdout.on("data", (chunk) => { chunks.push(chunk); });
// these are 'once' because they can and do fire multiple times for multiple errors,
// but this is a promise so you'll have to deal with them one at a time
stdout.once("end", () => { resolve(Buffer.concat(chunks)); });
stderr.once("data", (data) => { reject(String(data)); });
});
});
};