aheckmann / gm

GraphicsMagick for node
http://aheckmann.github.com/gm/
6.95k stars 614 forks source link

Remove white background #784

Open HassanRaza1112 opened 5 years ago

HassanRaza1112 commented 5 years ago

gm convert yobo_web.jpg -fuzz 50% -transparent "#ffffff" ou2t.png

This command works fine in this but when i try in nodejs it does nothing like this what i am doing wrong ? Please help gm("./user/upload/" + filename) .gravity("Center") .resize(500, null) .transparent("white") .fuzz(20, false) .setFormat("png") .write("./user/upload/" + "thumb-" + f2 + ".png", err => { if (err) { console.log(err); }});