vue-2-img
Version:
An easy way to convert HTML sections and charts to JPG, PNG or PDF files
18 lines (16 loc) • 368 B
JavaScript
import html2canvas from 'html2canvas'
export function canvasExport (domNode, callback) {
return html2canvas(domNode, {
async: true,
allowTaint: true,
useCORS: true,
timeout: 1,
letterRendering: true,
background: '#ffffff',
logging: false,
scale: 2
}).then((data) => {
if (callback) return callback(data)
return data
})
}