I am trying to resize an image with node-imagemagick library, but it is not working.
the code i am using to resize is
im.resize({
srcPath: __dirname+'originalimage.jpg',
dstPath: __dirname+'resized.jpg',
width: 50
}, function(err, stdout, stderr){
if (err) throw err;
});
It throws the error
Error: Command failed: Invalid Parameter - -set
at ChildProcess.<anonymous> (E:NodeJsDevelopment
ode_modulesimagemagickimagemagick.js:64:15)
at ChildProcess.EventEmitter.emit (events.js:91:17)
at Process._handle.onexit (child_process.js:674:10)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…