2011-09-27 05:28:16 +09:00
|
|
|
'use strict';
|
2011-09-15 09:34:29 +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'}});
|
|
|
|
require(['pdfjs/display/api'], function (api) {
|
|
|
|
// In production, change this to point to the built `pdf.worker.js` file.
|
|
|
|
PDFJS.workerSrc = '../../src/worker_loader.js';
|
|
|
|
|
|
|
|
// Fetch the PDF document from the URL using promises.
|
|
|
|
api.getDocument('helloworld.pdf').then(function (pdf) {
|
|
|
|
// Fetch the page.
|
|
|
|
pdf.getPage(1).then(function (page) {
|
|
|
|
var scale = 1.5;
|
|
|
|
var viewport = page.getViewport(scale);
|
2011-09-15 09:34:29 +09:00
|
|
|
|
2015-12-17 06:03:06 +09:00
|
|
|
// Prepare canvas using PDF page dimensions.
|
|
|
|
var canvas = document.getElementById('the-canvas');
|
|
|
|
var context = canvas.getContext('2d');
|
|
|
|
canvas.height = viewport.height;
|
|
|
|
canvas.width = viewport.width;
|
2011-09-15 09:34:29 +09:00
|
|
|
|
2015-12-17 06:03:06 +09:00
|
|
|
// Render PDF page into canvas context.
|
|
|
|
var renderContext = {
|
|
|
|
canvasContext: context,
|
|
|
|
viewport: viewport
|
|
|
|
};
|
|
|
|
page.render(renderContext);
|
|
|
|
});
|
2012-04-13 00:23:38 +09:00
|
|
|
});
|
2011-09-15 09:34:29 +09:00
|
|
|
});
|