0

I want to print PDF with using embed tag. PDF appers on the screen but blank page coming on the print screen. Why? and How can I solve this?

const width = window.innerWidth * 0.9;
const height = window.innerHeight * 0.9;
const content = `<!DOCTYPE html>
        <html>
        <head><title></title></head>
        <body onload="window.focus(); window.print(); window.close();">
        <embed width="720" height="540" src="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf" />
        </body>
        </html>`;
const options = 'toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height;
const printWindow = window.open('', 'print', options);
printWindow.document.open();
printWindow.document.write(content);
printWindow.document.close();
printWindow.focus();
midstack
  • 2,105
  • 7
  • 44
  • 73

0 Answers0