Skip to main content

openBase64Image

新窗口打开图片

examples

在新窗口预览图片(支持base64)

source code

const img = document.createElement('img');
//图片路径
img.src = URL.createObjectURL(files[0]);

const newWindow = window.open('');
newWindow.document.write(img.outerHTML);
newWindow.document.close();