Nodejs - Error: Spawn Enoent While Adjusting Image Size Using Module Gm
I am trying to create a thumbnail with an image that I have already saved. I am using the module gm to adjust the size of the image. var gm = require ('gm'); var fs = require('fs')
Solution 1:
Replace:
var gm = require('gm');
for
var gm = require('gm').subClass({ imageMagick: true });
Post a Comment for "Nodejs - Error: Spawn Enoent While Adjusting Image Size Using Module Gm"