This patch extends PR 16115 to work in all browsers, regardless of their `OffscreenCanvas` support, such that transfer functions will be applied to general rendering (and not just image data). In order to do this we introduce the `BaseFilterFactory` that is then extended in browsers/Node.js environments, similar to all the other factories used in the API, such that we always have the necessary factory available in `src/display/canvas.js`. These changes help simplify the existing `putBinaryImageData` function, and the new method can easily be stubbed-out in the Firefox PDF Viewer. *Please note:* This patch removes the old *partial* transfer function support, which only applied to image data, from Node.js environments since the `node-canvas` package currently doesn't support filters. However, this should hopefully be fine given that: - Transfer functions are not very commonly used in PDF documents. - Browsers in general, and Firefox in particular, are the *primary* development target for the PDF.js library. - The FAQ only lists Node.js as *mostly* supported, see https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#faq-support
122 lines
3.4 KiB
JavaScript
122 lines
3.4 KiB
JavaScript
/* Copyright 2012 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.
|
|
*/
|
|
|
|
// eslint-disable-next-line max-len
|
|
/** @typedef {import("./display/api").OnProgressParameters} OnProgressParameters */
|
|
// eslint-disable-next-line max-len
|
|
/** @typedef {import("./display/api").PDFDocumentLoadingTask} PDFDocumentLoadingTask */
|
|
/** @typedef {import("./display/api").PDFDocumentProxy} PDFDocumentProxy */
|
|
/** @typedef {import("./display/api").PDFPageProxy} PDFPageProxy */
|
|
/** @typedef {import("./display/api").RenderTask} RenderTask */
|
|
/** @typedef {import("./display/display_utils").PageViewport} PageViewport */
|
|
// eslint-disable-next-line max-len
|
|
/** @typedef {import("./display/text_layer").TextLayerRenderTask} TextLayerRenderTask */
|
|
|
|
import {
|
|
AbortException,
|
|
AnnotationEditorParamsType,
|
|
AnnotationEditorType,
|
|
AnnotationMode,
|
|
CMapCompressionType,
|
|
createPromiseCapability,
|
|
createValidAbsoluteUrl,
|
|
FeatureTest,
|
|
InvalidPDFException,
|
|
MissingPDFException,
|
|
OPS,
|
|
PasswordResponses,
|
|
PermissionFlag,
|
|
shadow,
|
|
UnexpectedResponseException,
|
|
Util,
|
|
VerbosityLevel,
|
|
} from "./shared/util.js";
|
|
import {
|
|
build,
|
|
getDocument,
|
|
PDFDataRangeTransport,
|
|
PDFWorker,
|
|
version,
|
|
} from "./display/api.js";
|
|
import {
|
|
getFilenameFromUrl,
|
|
getPdfFilenameFromUrl,
|
|
getXfaPageViewport,
|
|
isDataScheme,
|
|
isPdfFile,
|
|
loadScript,
|
|
PDFDateString,
|
|
PixelsPerInch,
|
|
RenderingCancelledException,
|
|
setLayerDimensions,
|
|
} from "./display/display_utils.js";
|
|
import { renderTextLayer, updateTextLayer } from "./display/text_layer.js";
|
|
import { AnnotationEditorLayer } from "./display/editor/annotation_editor_layer.js";
|
|
import { AnnotationEditorUIManager } from "./display/editor/tools.js";
|
|
import { AnnotationLayer } from "./display/annotation_layer.js";
|
|
import { GlobalWorkerOptions } from "./display/worker_options.js";
|
|
import { SVGGraphics } from "./display/svg.js";
|
|
import { XfaLayer } from "./display/xfa_layer.js";
|
|
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const pdfjsVersion =
|
|
typeof PDFJSDev !== "undefined" ? PDFJSDev.eval("BUNDLE_VERSION") : void 0;
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const pdfjsBuild =
|
|
typeof PDFJSDev !== "undefined" ? PDFJSDev.eval("BUNDLE_BUILD") : void 0;
|
|
|
|
export {
|
|
AbortException,
|
|
AnnotationEditorLayer,
|
|
AnnotationEditorParamsType,
|
|
AnnotationEditorType,
|
|
AnnotationEditorUIManager,
|
|
AnnotationLayer,
|
|
AnnotationMode,
|
|
build,
|
|
CMapCompressionType,
|
|
createPromiseCapability,
|
|
createValidAbsoluteUrl,
|
|
FeatureTest,
|
|
getDocument,
|
|
getFilenameFromUrl,
|
|
getPdfFilenameFromUrl,
|
|
getXfaPageViewport,
|
|
GlobalWorkerOptions,
|
|
InvalidPDFException,
|
|
isDataScheme,
|
|
isPdfFile,
|
|
loadScript,
|
|
MissingPDFException,
|
|
OPS,
|
|
PasswordResponses,
|
|
PDFDataRangeTransport,
|
|
PDFDateString,
|
|
PDFWorker,
|
|
PermissionFlag,
|
|
PixelsPerInch,
|
|
RenderingCancelledException,
|
|
renderTextLayer,
|
|
setLayerDimensions,
|
|
shadow,
|
|
SVGGraphics,
|
|
UnexpectedResponseException,
|
|
updateTextLayer,
|
|
Util,
|
|
VerbosityLevel,
|
|
version,
|
|
XfaLayer,
|
|
};
|