2014-05-20 08:53:40 +09:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-20 12:20:55 +09:00
|
|
|
// Parse query string to extract some parameters (it can fail for some input)
|
|
|
|
var query = document.location.href.replace(/^[^?]*(\?([^#]*))?(#.*)?/, '$2');
|
|
|
|
var queryParams = query ? JSON.parse('{' + query.split('&').map(function (a) {
|
|
|
|
return a.split('=').map(decodeURIComponent).map(JSON.stringify).join(': ');
|
|
|
|
}).join(',') + '}') : {};
|
|
|
|
|
|
|
|
var url = queryParams.file || '../../test/pdfs/liveprogramming.pdf';
|
|
|
|
var scale = +queryParams.scale || 1.5;
|
|
|
|
|
2016-03-29 06:44:27 +09:00
|
|
|
function renderDocument(pdf, svgLib) {
|
2014-05-20 08:53:40 +09:00
|
|
|
var numPages = pdf.numPages;
|
|
|
|
// Using promise to fetch the page
|
|
|
|
|
|
|
|
// For testing only.
|
|
|
|
var MAX_NUM_PAGES = 50;
|
|
|
|
var ii = Math.min(MAX_NUM_PAGES, numPages);
|
2015-02-03 00:12:52 +09:00
|
|
|
|
2014-05-20 08:53:40 +09:00
|
|
|
var promise = Promise.resolve();
|
|
|
|
for (var i = 1; i <= ii; i++) {
|
2014-06-20 12:20:55 +09:00
|
|
|
var anchor = document.createElement('a');
|
|
|
|
anchor.setAttribute('name', 'page=' + i);
|
|
|
|
anchor.setAttribute('title', 'Page ' + i);
|
|
|
|
document.body.appendChild(anchor);
|
|
|
|
|
|
|
|
// Using promise to fetch and render the next page
|
|
|
|
promise = promise.then(function (pageNum, anchor) {
|
2014-05-20 08:53:40 +09:00
|
|
|
return pdf.getPage(pageNum).then(function (page) {
|
|
|
|
var viewport = page.getViewport(scale);
|
|
|
|
|
|
|
|
var container = document.createElement('div');
|
|
|
|
container.id = 'pageContainer' + pageNum;
|
|
|
|
container.className = 'pageContainer';
|
|
|
|
container.style.width = viewport.width + 'px';
|
|
|
|
container.style.height = viewport.height + 'px';
|
2014-06-20 12:20:55 +09:00
|
|
|
anchor.appendChild(container);
|
2014-05-20 08:53:40 +09:00
|
|
|
|
2014-06-20 12:20:55 +09:00
|
|
|
return page.getOperatorList().then(function (opList) {
|
2016-03-29 06:44:27 +09:00
|
|
|
var svgGfx = new svgLib.SVGGraphics(page.commonObjs, page.objs);
|
2014-08-15 02:56:11 +09:00
|
|
|
return svgGfx.getSVG(opList, viewport).then(function (svg) {
|
|
|
|
container.appendChild(svg);
|
2014-05-20 08:53:40 +09:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-06-20 12:20:55 +09:00
|
|
|
}.bind(null, i, anchor));
|
2014-05-20 08:53:40 +09:00
|
|
|
}
|
2015-12-17 06:03:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// In production, the bundled pdf.js shall be used instead of RequireJS.
|
|
|
|
require.config({paths: {'pdfjs': '../../src'}});
|
2016-03-29 06:44:27 +09:00
|
|
|
require(['pdfjs/display/api', 'pdfjs/display/svg', 'pdfjs/display/global'],
|
|
|
|
function (api, svg, global) {
|
2015-12-17 06:03:06 +09:00
|
|
|
// In production, change this to point to the built `pdf.worker.js` file.
|
2016-03-29 06:44:27 +09:00
|
|
|
global.PDFJS.workerSrc = '../../src/worker_loader.js';
|
2015-12-17 06:03:06 +09:00
|
|
|
|
2016-02-27 06:47:00 +09:00
|
|
|
// In production, change this to point to where the cMaps are placed.
|
2016-03-29 06:44:27 +09:00
|
|
|
global.PDFJS.cMapUrl = '../../external/bcmaps/';
|
|
|
|
global.PDFJS.cMapPacked = true;
|
2016-02-27 06:47:00 +09:00
|
|
|
|
2015-12-17 06:03:06 +09:00
|
|
|
// Fetch the PDF document from the URL using promises.
|
2016-03-29 06:44:27 +09:00
|
|
|
api.getDocument(url).then(function (doc) {
|
|
|
|
renderDocument(doc, svg);
|
|
|
|
});
|
2014-05-20 08:53:40 +09:00
|
|
|
});
|