我可以使用JavaScript将带有图像的网页打印出来。但是它将用空白打印出整个页面。我该怎么做才能使用JavaScript打印图像?
答案 0 :(得分:2)
以所需的必要分辨率将图像加载到页面上。 在您的JavaScript中,将最高分辨率的图片网址传递给Print.js,以获得更好的打印质量。
导入printjs库:printJS('images / print-01-highres.jpg','image')
选中此JavaScript库,该库提供了更多的选项,可从html视图打印。
https://www.cssscript.com/javascript-library-printing-elements-page-print-js/
答案 1 :(得分:1)
使用window.open
在单独的窗口中打开图像,然后打印那个。
或者,在打印之前隐藏除图像以外的所有内容(使用JavaScript或@media
CSS)。
答案 2 :(得分:1)
您可以使用html2canvas(https://html2canvas.hertzen.com/)从html页面捕获您选择的图像并进行打印。以下是用于在codepen
上捕获图像或其中一个示例的校验叉的简单代码<div id="capture" style="padding: 10px; background: #f5da55">
<h4 style="color: #000; ">Hello world!</h4>
<img src="https://www.google.co.in/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" />
</div>
html2canvas(document.querySelector("#capture")).then(canvas => {
document.body.appendChild(canvas)
});