网页打印PDF文件

摘要:网页直接调起打印PDF文件的方法

本文介绍两个html打印的方法:

  1. print-js(推荐)
  2. 自己通过iframe实现

查看示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html lang="zh-CN">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport"/>
<title>打印测试页面</title>
<script src="https://cdn.bootcdn.net/ajax/libs/axios/0.21.1/axios.min.js"></script>
<!-- https://www.npmjs.com/package/print-js -->
<script src="https://cdn.bootcdn.net/ajax/libs/print-js/1.6.0/print.min.js"></script>
</head>
<body>
<h1>打印测试页面</h1>
<h2>这是主页面的内容....</h2>
<h2>这是主页面的内容....</h2>
<h2>这是主页面的内容....</h2>
<div>
<button onclick="print1()">打印1(使用print-js插件)</button>
<button onclick="print2()">打印2(自己实现)</button>
</div>
<h2>这是主页面的内容....</h2>
<h2>这是主页面的内容....</h2>
<h2>这是主页面的内容....</h2>
<script>

const url = 'https://image.dqv5.com/files/Alibaba_Java_Coding_Guidelines.pdf';

/**
* 使用print-js插件中的打印方法,官网:https://printjs.crabbly.com/
*/
function print1() {
printJS(url);
}

/**
* 通过ajax将文件下载下来,然后通过URL.createObjectURL创建一个访问地址,避免直接使用iframe时可能会出现的跨域问题
*/
function print2() {
axios({
url: url,
headers: {
"Content-type": "application/pdf"
},
responseType: "arraybuffer",
}).then(res => {
const data = res.data;
var pdfFile = new Blob([data], {
type: "application/pdf"
});
var pdfUrl = URL.createObjectURL(pdfFile);
myPrint(pdfUrl);
});
}


/**
* 定义自己的打印方法,创建一个可复用的iframe,传入url,加载完成后调用页面的打印方法
* @param url
*/
function myPrint(url) {
var iframe = this._printIframe;
if (!this._printIframe) {
iframe = this._printIframe = document.createElement('iframe');
document.body.appendChild(iframe);

iframe.style.display = 'none';
iframe.onload = function () {
setTimeout(function () {
iframe.focus();
iframe.contentWindow.print();
}, 1);
};
}
iframe.src = url;
};
</script>
</body>
</html>