2014-12-19 18:10:57 -06:00
|
|
|
/* Copyright 2014 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2018-03-15 13:49:28 -07:00
|
|
|
if (!pdfjsLib.getDocument || !pdfjsViewer.PDFPageView) {
|
2021-01-22 17:38:26 +01:00
|
|
|
// eslint-disable-next-line no-alert
|
2019-12-25 20:03:46 +01:00
|
|
|
alert("Please build the pdfjs-dist library using\n `gulp dist-install`");
|
2014-12-19 18:10:57 -06:00
|
|
|
}
|
|
|
|
|
2015-11-06 07:39:13 -06:00
|
|
|
// The workerSrc property shall be specified.
|
2014-12-19 18:10:57 -06:00
|
|
|
//
|
2018-03-15 13:49:28 -07:00
|
|
|
pdfjsLib.GlobalWorkerOptions.workerSrc =
|
2023-10-14 11:24:56 +02:00
|
|
|
"../../node_modules/pdfjs-dist/build/pdf.worker.mjs";
|
2014-12-19 18:10:57 -06:00
|
|
|
|
|
|
|
// Some PDFs need external cmaps.
|
|
|
|
//
|
2021-03-12 17:08:17 +01:00
|
|
|
const CMAP_URL = "../../node_modules/pdfjs-dist/cmaps/";
|
|
|
|
const CMAP_PACKED = true;
|
2014-12-19 18:10:57 -06:00
|
|
|
|
2021-03-12 17:08:17 +01:00
|
|
|
const DEFAULT_URL = "../../web/compressed.tracemonkey-pldi-09.pdf";
|
|
|
|
const PAGE_TO_VIEW = 1;
|
|
|
|
const SCALE = 1.0;
|
2014-12-19 18:10:57 -06:00
|
|
|
|
2021-09-08 12:33:59 +02:00
|
|
|
const ENABLE_XFA = true;
|
|
|
|
|
2021-03-12 17:08:17 +01:00
|
|
|
const container = document.getElementById("pageContainer");
|
2014-12-19 18:10:57 -06:00
|
|
|
|
2021-03-12 17:08:17 +01:00
|
|
|
const eventBus = new pdfjsViewer.EventBus();
|
2020-02-26 17:16:30 +01:00
|
|
|
|
2014-12-19 18:10:57 -06:00
|
|
|
// Loading document.
|
2021-03-12 17:08:17 +01:00
|
|
|
const loadingTask = pdfjsLib.getDocument({
|
2018-02-17 16:57:24 +01:00
|
|
|
url: DEFAULT_URL,
|
|
|
|
cMapUrl: CMAP_URL,
|
|
|
|
cMapPacked: CMAP_PACKED,
|
2021-09-08 12:33:59 +02:00
|
|
|
enableXfa: ENABLE_XFA,
|
2018-11-08 13:40:06 +01:00
|
|
|
});
|
2022-12-07 12:18:05 +01:00
|
|
|
|
2023-10-14 11:24:56 +02:00
|
|
|
const pdfDocument = await loadingTask.promise;
|
|
|
|
// Document loaded, retrieving the page.
|
|
|
|
const pdfPage = await pdfDocument.getPage(PAGE_TO_VIEW);
|
|
|
|
|
|
|
|
// Creating the page view with default parameters.
|
|
|
|
const pdfPageView = new pdfjsViewer.PDFPageView({
|
|
|
|
container,
|
|
|
|
id: PAGE_TO_VIEW,
|
|
|
|
scale: SCALE,
|
|
|
|
defaultViewport: pdfPage.getViewport({ scale: SCALE }),
|
|
|
|
eventBus,
|
|
|
|
});
|
|
|
|
// Associate the actual page with the view, and draw it.
|
|
|
|
pdfPageView.setPdfPage(pdfPage);
|
|
|
|
pdfPageView.draw();
|