123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2020 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.
- *
- * @licend The above is the entire license notice for the
- * Javascript code in this page
- */
- "use strict";
- var pdfjsVersion = '2.4.456';
- var pdfjsBuild = '228a591c';
- var pdfjsSharedUtil = require("./shared/util.js");
- var pdfjsDisplayAPI = require("./display/api.js");
- var pdfjsDisplayTextLayer = require("./display/text_layer.js");
- var pdfjsDisplayAnnotationLayer = require("./display/annotation_layer.js");
- var pdfjsDisplayDisplayUtils = require("./display/display_utils.js");
- var pdfjsDisplaySVG = require("./display/svg.js");
- const pdfjsDisplayWorkerOptions = require("./display/worker_options.js");
- const pdfjsDisplayAPICompatibility = require("./display/api_compatibility.js");
- {
- const {
- isNodeJS
- } = require("./shared/is_node.js");
- if (isNodeJS) {
- const PDFNodeStream = require("./display/node_stream.js").PDFNodeStream;
- pdfjsDisplayAPI.setPDFNetworkStreamFactory(params => {
- return new PDFNodeStream(params);
- });
- } else {
- const PDFNetworkStream = require("./display/network.js").PDFNetworkStream;
- let PDFFetchStream;
- if (pdfjsDisplayDisplayUtils.isFetchSupported()) {
- PDFFetchStream = require("./display/fetch_stream.js").PDFFetchStream;
- }
- pdfjsDisplayAPI.setPDFNetworkStreamFactory(params => {
- if (PDFFetchStream && pdfjsDisplayDisplayUtils.isValidFetchUrl(params.url)) {
- return new PDFFetchStream(params);
- }
- return new PDFNetworkStream(params);
- });
- }
- }
- exports.build = pdfjsDisplayAPI.build;
- exports.version = pdfjsDisplayAPI.version;
- exports.getDocument = pdfjsDisplayAPI.getDocument;
- exports.LoopbackPort = pdfjsDisplayAPI.LoopbackPort;
- exports.PDFDataRangeTransport = pdfjsDisplayAPI.PDFDataRangeTransport;
- exports.PDFWorker = pdfjsDisplayAPI.PDFWorker;
- exports.renderTextLayer = pdfjsDisplayTextLayer.renderTextLayer;
- exports.AnnotationLayer = pdfjsDisplayAnnotationLayer.AnnotationLayer;
- exports.createPromiseCapability = pdfjsSharedUtil.createPromiseCapability;
- exports.PasswordResponses = pdfjsSharedUtil.PasswordResponses;
- exports.InvalidPDFException = pdfjsSharedUtil.InvalidPDFException;
- exports.MissingPDFException = pdfjsSharedUtil.MissingPDFException;
- exports.SVGGraphics = pdfjsDisplaySVG.SVGGraphics;
- exports.NativeImageDecoding = pdfjsSharedUtil.NativeImageDecoding;
- exports.CMapCompressionType = pdfjsSharedUtil.CMapCompressionType;
- exports.PermissionFlag = pdfjsSharedUtil.PermissionFlag;
- exports.UnexpectedResponseException = pdfjsSharedUtil.UnexpectedResponseException;
- exports.OPS = pdfjsSharedUtil.OPS;
- exports.VerbosityLevel = pdfjsSharedUtil.VerbosityLevel;
- exports.UNSUPPORTED_FEATURES = pdfjsSharedUtil.UNSUPPORTED_FEATURES;
- exports.createValidAbsoluteUrl = pdfjsSharedUtil.createValidAbsoluteUrl;
- exports.createObjectURL = pdfjsSharedUtil.createObjectURL;
- exports.removeNullCharacters = pdfjsSharedUtil.removeNullCharacters;
- exports.shadow = pdfjsSharedUtil.shadow;
- exports.Util = pdfjsSharedUtil.Util;
- exports.RenderingCancelledException = pdfjsDisplayDisplayUtils.RenderingCancelledException;
- exports.getFilenameFromUrl = pdfjsDisplayDisplayUtils.getFilenameFromUrl;
- exports.LinkTarget = pdfjsDisplayDisplayUtils.LinkTarget;
- exports.addLinkAttributes = pdfjsDisplayDisplayUtils.addLinkAttributes;
- exports.loadScript = pdfjsDisplayDisplayUtils.loadScript;
- exports.PDFDateString = pdfjsDisplayDisplayUtils.PDFDateString;
- exports.GlobalWorkerOptions = pdfjsDisplayWorkerOptions.GlobalWorkerOptions;
- exports.apiCompatibilityParams = pdfjsDisplayAPICompatibility.apiCompatibilityParams;
|