function printPDFfromURL(pdf) {
var iframe = document.createElement('iframe');
iframe.style.display = 'none';
document.body.appendChild(iframe);
iframe.onload = function() {
iframe.contentWindow.print();
setTimeout(()=>{
iframe.remove()
}, 60000);
};
iframe.src = pdf;
}
//use:
// printPDFfromURL("http://localhost/path_pdf.pdf");
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter