1

我通过节点模块裁剪图像文件imagemagick。它裁剪成功,但是如何获取裁剪结果图像的名称(或路径)

我的代码:

const im = require('imagemagick');
....
const imgFile = "img.png";
im.convert([imgFile, '-crop', '300x300', 'test.png'],
  function(err, stdout){
    if (err) throw err;
    console.log('stdout:', stdout);
    // here: I want to get names (or paths) of cropped images
    }
)
4

0 回答 0