42 lines
793 B
JavaScript
Vendored
42 lines
793 B
JavaScript
Vendored
'use strict';
|
|
const execBuffer = require('exec-buffer');
|
|
const gifsicle = require('gifsicle');
|
|
const isGif = require('is-gif');
|
|
|
|
module.exports = opts => buf => {
|
|
opts = Object.assign({}, opts);
|
|
|
|
if (!Buffer.isBuffer(buf)) {
|
|
return Promise.reject(new TypeError('Expected a buffer'));
|
|
}
|
|
|
|
if (!isGif(buf)) {
|
|
return Promise.resolve(buf);
|
|
}
|
|
|
|
const args = ['--no-warnings'];
|
|
|
|
if (opts.interlaced) {
|
|
args.push('--interlace');
|
|
}
|
|
|
|
if (opts.optimizationLevel) {
|
|
args.push(`--optimize=${opts.optimizationLevel}`);
|
|
}
|
|
|
|
if (opts.colors) {
|
|
args.push(`--colors=${opts.colors}`);
|
|
}
|
|
|
|
args.push('--output', execBuffer.output, execBuffer.input);
|
|
|
|
return execBuffer({
|
|
input: buf,
|
|
bin: gifsicle,
|
|
args
|
|
}).catch(err => {
|
|
err.message = err.stderr || err.message;
|
|
throw err;
|
|
});
|
|
};
|