const img = new Image();
img.src = res; //res是图片的路径地址
const newWin = window.open('', '_blank');
newWin.document.write(img.outerHTML);
// newWin.document.body.style.background = '#000';
newWin.document.body.style.textAlign = 'center';
newWin.document.body.onclick = function () {
const a = document.createElement('a');
const filename = 'waterMark.jpeg';
a.href = res;
a.download = filename;
document.body.appendChild(a);
a.click();
setTimeout(() => {
document.body.removeChild(a);
}, 1000);
};
newWin.document.title = '保存水印图片';
newWin.document.write('<div >手动下载图片</div>');
newWin.document.close();