-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf_viewer.html
251 lines (181 loc) · 7.53 KB
/
pdf_viewer.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<div class="wrapper wrapper-content animated fadeIn">
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-content border-sbottom">
<h4>PDF.js</h4>
<p>
PDF.js is a Portable Document Format (PDF) viewer that is built with HTML5.
PDF.js is community-driven and supported by Mozilla Labs. The goal is to create a general-purpose, web standards-based platform for parsing and rendering PDFs.
Full documentation: <a href="https://github.com/mozilla/pdf.js" target="_blank">https://github.com/mozilla/pdf.js</a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center pdf-toolbar">
<div class="btn-group">
<button id="prev" class="btn btn-white"><i class="fa fa-long-arrow-left"></i> <span class="d-none d-sm-inline">Previous</span></button>
<button id="next" class="btn btn-white"><i class="fa fa-long-arrow-right"></i> <span class="d-none d-sm-inline">Next</span></button>
<button id="zoomin" class="btn btn-white"><i class="fa fa-search-minus"></i> <span class="d-none d-sm-inline">Zoom In</span></button>
<button id="zoomout" class="btn btn-white"><i class="fa fa-search-plus"></i> <span class="d-none d-sm-inline">Zoom Out</span> </button>
<button id="zoomfit" class="btn btn-white"> 100%</button>
<span class="btn btn-white hidden-xs">Page: </span>
<div class="input-group">
<input type="text" class="form-control" id="page_num">
<div class="input-group-append">
<button type="button" class="btn btn-white" id="page_count">/ 22</button>
</div>
</div>
</div>
</div>
<div class="text-center m-t-md">
<canvas id="the-canvas" class="pdfcanvas border-left-right border-top-bottom b-r-md"></canvas>
</div>
</div>
<div class="footer">
<div class="float-right">
10GB of <strong>250GB</strong> Free.
</div>
<div>
<strong>Copyright</strong> Example Company © 2014-2018
</div>
</div>
</div>
</div>
<!-- Mainly scripts -->
<!-- Custom and plugin javascript -->
<script src="js/common.js"></script>
<script src="js/plugins/pdfjs/pdf.js"></script>
<script id="script">
//
// If absolute URL from the remote server is provided, configure the CORS
// header on that server.
//
var url = './pdf/example.pdf';
var pdfDoc = null,
pageNum = 1,
pageRendering = false,
pageNumPending = null,
scale = 1.5,
zoomRange = 0.25,
canvas = document.getElementById('the-canvas'),
ctx = canvas.getContext('2d');
/**
* Get page info from document, resize canvas accordingly, and render page.
* @param num Page number.
*/
function renderPage(num, scale) {
pageRendering = true;
// Using promise to fetch the page
pdfDoc.getPage(num).then(function(page) {
var viewport = page.getViewport(scale);
canvas.height = viewport.height;
canvas.width = viewport.width;
// Render PDF page into canvas context
var renderContext = {
canvasContext: ctx,
viewport: viewport
};
var renderTask = page.render(renderContext);
// Wait for rendering to finish
renderTask.promise.then(function () {
pageRendering = false;
if (pageNumPending !== null) {
// New page rendering is pending
renderPage(pageNumPending);
pageNumPending = null;
}
});
});
// Update page counters
document.getElementById('page_num').value = num;
}
/**
* If another page rendering in progress, waits until the rendering is
* finised. Otherwise, executes rendering immediately.
*/
function queueRenderPage(num) {
if (pageRendering) {
pageNumPending = num;
} else {
renderPage(num,scale);
}
}
/**
* Displays previous page.
*/
function onPrevPage() {
if (pageNum <= 1) {
return;
}
pageNum--;
var scale = pdfDoc.scale;
queueRenderPage(pageNum, scale);
}
document.getElementById('prev').addEventListener('click', onPrevPage);
/**
* Displays next page.
*/
function onNextPage() {
if (pageNum >= pdfDoc.numPages) {
return;
}
pageNum++;
var scale = pdfDoc.scale;
queueRenderPage(pageNum, scale);
}
document.getElementById('next').addEventListener('click', onNextPage);
/**
* Zoom in page.
*/
function onZoomIn() {
if (scale >= pdfDoc.scale) {
return;
}
scale += zoomRange;
var num = pageNum;
renderPage(num, scale)
}
document.getElementById('zoomin').addEventListener('click', onZoomIn);
/**
* Zoom out page.
*/
function onZoomOut() {
if (scale >= pdfDoc.scale) {
return;
}
scale -= zoomRange;
var num = pageNum;
queueRenderPage(num, scale);
}
document.getElementById('zoomout').addEventListener('click', onZoomOut);
/**
* Zoom fit page.
*/
function onZoomFit() {
if (scale >= pdfDoc.scale) {
return;
}
scale = 1;
var num = pageNum;
queueRenderPage(num, scale);
}
document.getElementById('zoomfit').addEventListener('click', onZoomFit);
/**
* Asynchronously downloads PDF.
*/
PDFJS.getDocument(url).then(function (pdfDoc_) {
pdfDoc = pdfDoc_;
var documentPagesNumber = pdfDoc.numPages;
document.getElementById('page_count').textContent = '/ ' + documentPagesNumber;
$('#page_num').on('change', function() {
var pageNumber = Number($(this).val());
if(pageNumber > 0 && pageNumber <= documentPagesNumber) {
queueRenderPage(pageNumber, scale);
}
});
// Initial/first page rendering
renderPage(pageNum, scale);
});
</script>