依赖watermark.min.js文件
import watermark from "../../asset/watermark.min.js";
/***
*fileUrl 文件地址
*callBack 回调函数
**/
function addWatermark(fileUrl, callBack) {
// upperLeft左上;lowerLeft左下;upperRight右上;lowerRight右下;center:居中
watermark(['' + fileUrl + ''])
.image(watermark.text.lowerRight('水印名称', '36px serif', '#000')).then((img) => {
callBack(img);
}).catch(function(error) { //加上catch
console.log(error);
});
},