TypeError:路径必须是字符串或缓冲区图像水印node.js

时间:2018-09-13 08:54:55

标签: javascript node.js watermark

我正在尝试在图像上添加水印,但是当我嵌入水印并将其提供给请求中的图像时,它总是会给我这个错误

TypeError: path must be a string or Buffer

这是我的示例node.js代码

const watermark = require('image-watermark');

file = req.file('file');

const options = {
    text: 'sample watermark',
    dstPath: './images',
};

watermark.embedWatermark(file, options, (error) => {
    if (!error) {
        console.log('Succefully embeded watermark');
    }
});

任何帮助将不胜感激

0 个答案:

没有答案