我正在尝试在图像上添加水印,但是当我嵌入水印并将其提供给请求中的图像时,它总是会给我这个错误
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');
}
});
任何帮助将不胜感激