node.js How to create thumbnail from image?
I'm using gm module.This is my code:
gm(picture.path).thumb('250', '180', picture.thumb_path, 100, function (error) {
if(error) console.log(error);
});
Но размер результата иногда составляет 249x180. Мне нужно 250x180
1 ответ
Я решил это с помощью этого кода:
imageMagick(picture.path)
.resize('250', '180', '^')
.gravity('center')
.extent(250, 180)
.write(picture.thumb_path, function (error) {
if(error) console.log(error);
});