1

我正在使用 imagemagick 库来调整图像大小以适应 UI 规范,

我已经通过以下 cmd 安装了 imagemagick: sudo npm install imagemagick

安装已正确完成,但在调整大小时出现错误,

我的代码:

                var im = require('imagemagick');
                im.resize({
                            srcPath:"/tmp/"+imageName,
                            dstPath:"/home/image/" + imageName,
                            width:43,
                            height :43,
                       }, function(err, stdout, stderr){
                       if (err) {
                                console.log('error while resizing image ' + err);
                                }
                          });

我收到以下错误:

      Error: Command failed: execvp(): No such file or directory
4

1 回答 1

1
dstPath:"/home/image/" + imageName,

编辑:你安装了 imagemagick 库吗?如果没有,那么您必须安装它。如果你在 ubuntu 做apt-get install imagemagick

于 2012-11-02T05:58:38.423 回答