123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2019 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";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.MarkupAnnotation = exports.AnnotationFactory = exports.AnnotationBorderStyle = exports.Annotation = void 0;
- var _util = require("../shared/util");
- var _obj = require("./obj");
- var _primitives = require("./primitives");
- var _colorspace = require("./colorspace");
- var _core_utils = require("./core_utils");
- var _operator_list = require("./operator_list");
- var _stream = require("./stream");
- function _get(target, property, receiver) { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get; } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(receiver); } return desc.value; }; } return _get(target, property, receiver || target); }
- function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
- var AnnotationFactory =
- /*#__PURE__*/
- function () {
- function AnnotationFactory() {
- _classCallCheck(this, AnnotationFactory);
- }
- _createClass(AnnotationFactory, null, [{
- key: "create",
- value: function create(xref, ref, pdfManager, idFactory) {
- return pdfManager.ensure(this, '_create', [xref, ref, pdfManager, idFactory]);
- }
- }, {
- key: "_create",
- value: function _create(xref, ref, pdfManager, idFactory) {
- var dict = xref.fetchIfRef(ref);
- if (!(0, _primitives.isDict)(dict)) {
- return undefined;
- }
- var id = (0, _primitives.isRef)(ref) ? ref.toString() : "annot_".concat(idFactory.createObjId());
- var subtype = dict.get('Subtype');
- subtype = (0, _primitives.isName)(subtype) ? subtype.name : null;
- var parameters = {
- xref: xref,
- dict: dict,
- subtype: subtype,
- id: id,
- pdfManager: pdfManager
- };
- switch (subtype) {
- case 'Link':
- return new LinkAnnotation(parameters);
- case 'Text':
- return new TextAnnotation(parameters);
- case 'Widget':
- var fieldType = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'FT'
- });
- fieldType = (0, _primitives.isName)(fieldType) ? fieldType.name : null;
- switch (fieldType) {
- case 'Tx':
- return new TextWidgetAnnotation(parameters);
- case 'Btn':
- return new ButtonWidgetAnnotation(parameters);
- case 'Ch':
- return new ChoiceWidgetAnnotation(parameters);
- }
- (0, _util.warn)('Unimplemented widget field type "' + fieldType + '", ' + 'falling back to base field type.');
- return new WidgetAnnotation(parameters);
- case 'Popup':
- return new PopupAnnotation(parameters);
- case 'FreeText':
- return new FreeTextAnnotation(parameters);
- case 'Line':
- return new LineAnnotation(parameters);
- case 'Square':
- return new SquareAnnotation(parameters);
- case 'Circle':
- return new CircleAnnotation(parameters);
- case 'PolyLine':
- return new PolylineAnnotation(parameters);
- case 'Polygon':
- return new PolygonAnnotation(parameters);
- case 'Caret':
- return new CaretAnnotation(parameters);
- case 'Ink':
- return new InkAnnotation(parameters);
- case 'Highlight':
- return new HighlightAnnotation(parameters);
- case 'Underline':
- return new UnderlineAnnotation(parameters);
- case 'Squiggly':
- return new SquigglyAnnotation(parameters);
- case 'StrikeOut':
- return new StrikeOutAnnotation(parameters);
- case 'Stamp':
- return new StampAnnotation(parameters);
- case 'FileAttachment':
- return new FileAttachmentAnnotation(parameters);
- default:
- if (!subtype) {
- (0, _util.warn)('Annotation is missing the required /Subtype.');
- } else {
- (0, _util.warn)('Unimplemented annotation type "' + subtype + '", ' + 'falling back to base annotation.');
- }
- return new Annotation(parameters);
- }
- }
- }]);
- return AnnotationFactory;
- }();
- exports.AnnotationFactory = AnnotationFactory;
- function getTransformMatrix(rect, bbox, matrix) {
- var bounds = _util.Util.getAxialAlignedBoundingBox(bbox, matrix);
- var minX = bounds[0];
- var minY = bounds[1];
- var maxX = bounds[2];
- var maxY = bounds[3];
- if (minX === maxX || minY === maxY) {
- return [1, 0, 0, 1, rect[0], rect[1]];
- }
- var xRatio = (rect[2] - rect[0]) / (maxX - minX);
- var yRatio = (rect[3] - rect[1]) / (maxY - minY);
- return [xRatio, 0, 0, yRatio, rect[0] - minX * xRatio, rect[1] - minY * yRatio];
- }
- var Annotation =
- /*#__PURE__*/
- function () {
- function Annotation(params) {
- _classCallCheck(this, Annotation);
- var dict = params.dict;
- this.setContents(dict.get('Contents'));
- this.setModificationDate(dict.get('M'));
- this.setFlags(dict.get('F'));
- this.setRectangle(dict.getArray('Rect'));
- this.setColor(dict.getArray('C'));
- this.setBorderStyle(dict);
- this.setAppearance(dict);
- this.data = {
- annotationFlags: this.flags,
- borderStyle: this.borderStyle,
- color: this.color,
- contents: this.contents,
- hasAppearance: !!this.appearance,
- id: params.id,
- modificationDate: this.modificationDate,
- rect: this.rectangle,
- subtype: params.subtype
- };
- }
- _createClass(Annotation, [{
- key: "_hasFlag",
- value: function _hasFlag(flags, flag) {
- return !!(flags & flag);
- }
- }, {
- key: "_isViewable",
- value: function _isViewable(flags) {
- return !this._hasFlag(flags, _util.AnnotationFlag.INVISIBLE) && !this._hasFlag(flags, _util.AnnotationFlag.HIDDEN) && !this._hasFlag(flags, _util.AnnotationFlag.NOVIEW);
- }
- }, {
- key: "_isPrintable",
- value: function _isPrintable(flags) {
- return this._hasFlag(flags, _util.AnnotationFlag.PRINT) && !this._hasFlag(flags, _util.AnnotationFlag.INVISIBLE) && !this._hasFlag(flags, _util.AnnotationFlag.HIDDEN);
- }
- }, {
- key: "setContents",
- value: function setContents(contents) {
- this.contents = (0, _util.stringToPDFString)(contents || '');
- }
- }, {
- key: "setModificationDate",
- value: function setModificationDate(modificationDate) {
- this.modificationDate = (0, _util.isString)(modificationDate) ? modificationDate : null;
- }
- }, {
- key: "setFlags",
- value: function setFlags(flags) {
- this.flags = Number.isInteger(flags) && flags > 0 ? flags : 0;
- }
- }, {
- key: "hasFlag",
- value: function hasFlag(flag) {
- return this._hasFlag(this.flags, flag);
- }
- }, {
- key: "setRectangle",
- value: function setRectangle(rectangle) {
- if (Array.isArray(rectangle) && rectangle.length === 4) {
- this.rectangle = _util.Util.normalizeRect(rectangle);
- } else {
- this.rectangle = [0, 0, 0, 0];
- }
- }
- }, {
- key: "setColor",
- value: function setColor(color) {
- var rgbColor = new Uint8ClampedArray(3);
- if (!Array.isArray(color)) {
- this.color = rgbColor;
- return;
- }
- switch (color.length) {
- case 0:
- this.color = null;
- break;
- case 1:
- _colorspace.ColorSpace.singletons.gray.getRgbItem(color, 0, rgbColor, 0);
- this.color = rgbColor;
- break;
- case 3:
- _colorspace.ColorSpace.singletons.rgb.getRgbItem(color, 0, rgbColor, 0);
- this.color = rgbColor;
- break;
- case 4:
- _colorspace.ColorSpace.singletons.cmyk.getRgbItem(color, 0, rgbColor, 0);
- this.color = rgbColor;
- break;
- default:
- this.color = rgbColor;
- break;
- }
- }
- }, {
- key: "setBorderStyle",
- value: function setBorderStyle(borderStyle) {
- this.borderStyle = new AnnotationBorderStyle();
- if (!(0, _primitives.isDict)(borderStyle)) {
- return;
- }
- if (borderStyle.has('BS')) {
- var dict = borderStyle.get('BS');
- var dictType = dict.get('Type');
- if (!dictType || (0, _primitives.isName)(dictType, 'Border')) {
- this.borderStyle.setWidth(dict.get('W'), this.rectangle);
- this.borderStyle.setStyle(dict.get('S'));
- this.borderStyle.setDashArray(dict.getArray('D'));
- }
- } else if (borderStyle.has('Border')) {
- var array = borderStyle.getArray('Border');
- if (Array.isArray(array) && array.length >= 3) {
- this.borderStyle.setHorizontalCornerRadius(array[0]);
- this.borderStyle.setVerticalCornerRadius(array[1]);
- this.borderStyle.setWidth(array[2], this.rectangle);
- if (array.length === 4) {
- this.borderStyle.setDashArray(array[3]);
- }
- }
- } else {
- this.borderStyle.setWidth(0);
- }
- }
- }, {
- key: "setAppearance",
- value: function setAppearance(dict) {
- this.appearance = null;
- var appearanceStates = dict.get('AP');
- if (!(0, _primitives.isDict)(appearanceStates)) {
- return;
- }
- var normalAppearanceState = appearanceStates.get('N');
- if ((0, _primitives.isStream)(normalAppearanceState)) {
- this.appearance = normalAppearanceState;
- return;
- }
- if (!(0, _primitives.isDict)(normalAppearanceState)) {
- return;
- }
- var as = dict.get('AS');
- if (!(0, _primitives.isName)(as) || !normalAppearanceState.has(as.name)) {
- return;
- }
- this.appearance = normalAppearanceState.get(as.name);
- }
- }, {
- key: "loadResources",
- value: function loadResources(keys) {
- return this.appearance.dict.getAsync('Resources').then(function (resources) {
- if (!resources) {
- return undefined;
- }
- var objectLoader = new _obj.ObjectLoader(resources, keys, resources.xref);
- return objectLoader.load().then(function () {
- return resources;
- });
- });
- }
- }, {
- key: "getOperatorList",
- value: function getOperatorList(evaluator, task, renderForms) {
- var _this = this;
- if (!this.appearance) {
- return Promise.resolve(new _operator_list.OperatorList());
- }
- var data = this.data;
- var appearanceDict = this.appearance.dict;
- var resourcesPromise = this.loadResources(['ExtGState', 'ColorSpace', 'Pattern', 'Shading', 'XObject', 'Font']);
- var bbox = appearanceDict.getArray('BBox') || [0, 0, 1, 1];
- var matrix = appearanceDict.getArray('Matrix') || [1, 0, 0, 1, 0, 0];
- var transform = getTransformMatrix(data.rect, bbox, matrix);
- return resourcesPromise.then(function (resources) {
- var opList = new _operator_list.OperatorList();
- opList.addOp(_util.OPS.beginAnnotation, [data.rect, transform, matrix]);
- return evaluator.getOperatorList({
- stream: _this.appearance,
- task: task,
- resources: resources,
- operatorList: opList
- }).then(function () {
- opList.addOp(_util.OPS.endAnnotation, []);
- _this.appearance.reset();
- return opList;
- });
- });
- }
- }, {
- key: "viewable",
- get: function get() {
- if (this.flags === 0) {
- return true;
- }
- return this._isViewable(this.flags);
- }
- }, {
- key: "printable",
- get: function get() {
- if (this.flags === 0) {
- return false;
- }
- return this._isPrintable(this.flags);
- }
- }]);
- return Annotation;
- }();
- exports.Annotation = Annotation;
- var AnnotationBorderStyle =
- /*#__PURE__*/
- function () {
- function AnnotationBorderStyle() {
- _classCallCheck(this, AnnotationBorderStyle);
- this.width = 1;
- this.style = _util.AnnotationBorderStyleType.SOLID;
- this.dashArray = [3];
- this.horizontalCornerRadius = 0;
- this.verticalCornerRadius = 0;
- }
- _createClass(AnnotationBorderStyle, [{
- key: "setWidth",
- value: function setWidth(width) {
- var rect = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [0, 0, 0, 0];
- if ((0, _primitives.isName)(width)) {
- this.width = 0;
- return;
- }
- if (Number.isInteger(width)) {
- if (width > 0) {
- var maxWidth = (rect[2] - rect[0]) / 2;
- var maxHeight = (rect[3] - rect[1]) / 2;
- if (maxWidth > 0 && maxHeight > 0 && (width > maxWidth || width > maxHeight)) {
- (0, _util.warn)("AnnotationBorderStyle.setWidth - ignoring width: ".concat(width));
- width = 1;
- }
- }
- this.width = width;
- }
- }
- }, {
- key: "setStyle",
- value: function setStyle(style) {
- if (!(0, _primitives.isName)(style)) {
- return;
- }
- switch (style.name) {
- case 'S':
- this.style = _util.AnnotationBorderStyleType.SOLID;
- break;
- case 'D':
- this.style = _util.AnnotationBorderStyleType.DASHED;
- break;
- case 'B':
- this.style = _util.AnnotationBorderStyleType.BEVELED;
- break;
- case 'I':
- this.style = _util.AnnotationBorderStyleType.INSET;
- break;
- case 'U':
- this.style = _util.AnnotationBorderStyleType.UNDERLINE;
- break;
- default:
- break;
- }
- }
- }, {
- key: "setDashArray",
- value: function setDashArray(dashArray) {
- if (Array.isArray(dashArray) && dashArray.length > 0) {
- var isValid = true;
- var allZeros = true;
- for (var i = 0, len = dashArray.length; i < len; i++) {
- var element = dashArray[i];
- var validNumber = +element >= 0;
- if (!validNumber) {
- isValid = false;
- break;
- } else if (element > 0) {
- allZeros = false;
- }
- }
- if (isValid && !allZeros) {
- this.dashArray = dashArray;
- } else {
- this.width = 0;
- }
- } else if (dashArray) {
- this.width = 0;
- }
- }
- }, {
- key: "setHorizontalCornerRadius",
- value: function setHorizontalCornerRadius(radius) {
- if (Number.isInteger(radius)) {
- this.horizontalCornerRadius = radius;
- }
- }
- }, {
- key: "setVerticalCornerRadius",
- value: function setVerticalCornerRadius(radius) {
- if (Number.isInteger(radius)) {
- this.verticalCornerRadius = radius;
- }
- }
- }]);
- return AnnotationBorderStyle;
- }();
- exports.AnnotationBorderStyle = AnnotationBorderStyle;
- var MarkupAnnotation =
- /*#__PURE__*/
- function (_Annotation) {
- _inherits(MarkupAnnotation, _Annotation);
- function MarkupAnnotation(parameters) {
- var _this2;
- _classCallCheck(this, MarkupAnnotation);
- _this2 = _possibleConstructorReturn(this, _getPrototypeOf(MarkupAnnotation).call(this, parameters));
- var dict = parameters.dict;
- if (!dict.has('C')) {
- _this2.data.color = null;
- }
- _this2.setCreationDate(dict.get('CreationDate'));
- _this2.data.creationDate = _this2.creationDate;
- _this2.data.hasPopup = dict.has('Popup');
- _this2.data.title = (0, _util.stringToPDFString)(dict.get('T') || '');
- return _this2;
- }
- _createClass(MarkupAnnotation, [{
- key: "setCreationDate",
- value: function setCreationDate(creationDate) {
- this.creationDate = (0, _util.isString)(creationDate) ? creationDate : null;
- }
- }]);
- return MarkupAnnotation;
- }(Annotation);
- exports.MarkupAnnotation = MarkupAnnotation;
- var WidgetAnnotation =
- /*#__PURE__*/
- function (_Annotation2) {
- _inherits(WidgetAnnotation, _Annotation2);
- function WidgetAnnotation(params) {
- var _this3;
- _classCallCheck(this, WidgetAnnotation);
- _this3 = _possibleConstructorReturn(this, _getPrototypeOf(WidgetAnnotation).call(this, params));
- var dict = params.dict;
- var data = _this3.data;
- data.annotationType = _util.AnnotationType.WIDGET;
- data.fieldName = _this3._constructFieldName(dict);
- data.fieldValue = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'V',
- getArray: true
- });
- data.alternativeText = (0, _util.stringToPDFString)(dict.get('TU') || '');
- data.defaultAppearance = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'DA'
- }) || '';
- var fieldType = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'FT'
- });
- data.fieldType = (0, _primitives.isName)(fieldType) ? fieldType.name : null;
- _this3.fieldResources = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'DR'
- }) || _primitives.Dict.empty;
- data.fieldFlags = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'Ff'
- });
- if (!Number.isInteger(data.fieldFlags) || data.fieldFlags < 0) {
- data.fieldFlags = 0;
- }
- data.readOnly = _this3.hasFieldFlag(_util.AnnotationFieldFlag.READONLY);
- if (data.fieldType === 'Sig') {
- data.fieldValue = null;
- _this3.setFlags(_util.AnnotationFlag.HIDDEN);
- }
- return _this3;
- }
- _createClass(WidgetAnnotation, [{
- key: "_constructFieldName",
- value: function _constructFieldName(dict) {
- if (!dict.has('T') && !dict.has('Parent')) {
- (0, _util.warn)('Unknown field name, falling back to empty field name.');
- return '';
- }
- if (!dict.has('Parent')) {
- return (0, _util.stringToPDFString)(dict.get('T'));
- }
- var fieldName = [];
- if (dict.has('T')) {
- fieldName.unshift((0, _util.stringToPDFString)(dict.get('T')));
- }
- var loopDict = dict;
- while (loopDict.has('Parent')) {
- loopDict = loopDict.get('Parent');
- if (!(0, _primitives.isDict)(loopDict)) {
- break;
- }
- if (loopDict.has('T')) {
- fieldName.unshift((0, _util.stringToPDFString)(loopDict.get('T')));
- }
- }
- return fieldName.join('.');
- }
- }, {
- key: "hasFieldFlag",
- value: function hasFieldFlag(flag) {
- return !!(this.data.fieldFlags & flag);
- }
- }, {
- key: "getOperatorList",
- value: function getOperatorList(evaluator, task, renderForms) {
- if (renderForms) {
- return Promise.resolve(new _operator_list.OperatorList());
- }
- return _get(_getPrototypeOf(WidgetAnnotation.prototype), "getOperatorList", this).call(this, evaluator, task, renderForms);
- }
- }]);
- return WidgetAnnotation;
- }(Annotation);
- var TextWidgetAnnotation =
- /*#__PURE__*/
- function (_WidgetAnnotation) {
- _inherits(TextWidgetAnnotation, _WidgetAnnotation);
- function TextWidgetAnnotation(params) {
- var _this4;
- _classCallCheck(this, TextWidgetAnnotation);
- _this4 = _possibleConstructorReturn(this, _getPrototypeOf(TextWidgetAnnotation).call(this, params));
- var dict = params.dict;
- _this4.data.fieldValue = (0, _util.stringToPDFString)(_this4.data.fieldValue || '');
- var alignment = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'Q'
- });
- if (!Number.isInteger(alignment) || alignment < 0 || alignment > 2) {
- alignment = null;
- }
- _this4.data.textAlignment = alignment;
- var maximumLength = (0, _core_utils.getInheritableProperty)({
- dict: dict,
- key: 'MaxLen'
- });
- if (!Number.isInteger(maximumLength) || maximumLength < 0) {
- maximumLength = null;
- }
- _this4.data.maxLen = maximumLength;
- _this4.data.multiLine = _this4.hasFieldFlag(_util.AnnotationFieldFlag.MULTILINE);
- _this4.data.comb = _this4.hasFieldFlag(_util.AnnotationFieldFlag.COMB) && !_this4.hasFieldFlag(_util.AnnotationFieldFlag.MULTILINE) && !_this4.hasFieldFlag(_util.AnnotationFieldFlag.PASSWORD) && !_this4.hasFieldFlag(_util.AnnotationFieldFlag.FILESELECT) && _this4.data.maxLen !== null;
- return _this4;
- }
- _createClass(TextWidgetAnnotation, [{
- key: "getOperatorList",
- value: function getOperatorList(evaluator, task, renderForms) {
- if (renderForms || this.appearance) {
- return _get(_getPrototypeOf(TextWidgetAnnotation.prototype), "getOperatorList", this).call(this, evaluator, task, renderForms);
- }
- var operatorList = new _operator_list.OperatorList();
- if (!this.data.defaultAppearance) {
- return Promise.resolve(operatorList);
- }
- var stream = new _stream.Stream((0, _util.stringToBytes)(this.data.defaultAppearance));
- return evaluator.getOperatorList({
- stream: stream,
- task: task,
- resources: this.fieldResources,
- operatorList: operatorList
- }).then(function () {
- return operatorList;
- });
- }
- }]);
- return TextWidgetAnnotation;
- }(WidgetAnnotation);
- var ButtonWidgetAnnotation =
- /*#__PURE__*/
- function (_WidgetAnnotation2) {
- _inherits(ButtonWidgetAnnotation, _WidgetAnnotation2);
- function ButtonWidgetAnnotation(params) {
- var _this5;
- _classCallCheck(this, ButtonWidgetAnnotation);
- _this5 = _possibleConstructorReturn(this, _getPrototypeOf(ButtonWidgetAnnotation).call(this, params));
- _this5.data.checkBox = !_this5.hasFieldFlag(_util.AnnotationFieldFlag.RADIO) && !_this5.hasFieldFlag(_util.AnnotationFieldFlag.PUSHBUTTON);
- _this5.data.radioButton = _this5.hasFieldFlag(_util.AnnotationFieldFlag.RADIO) && !_this5.hasFieldFlag(_util.AnnotationFieldFlag.PUSHBUTTON);
- _this5.data.pushButton = _this5.hasFieldFlag(_util.AnnotationFieldFlag.PUSHBUTTON);
- if (_this5.data.checkBox) {
- _this5._processCheckBox(params);
- } else if (_this5.data.radioButton) {
- _this5._processRadioButton(params);
- } else if (_this5.data.pushButton) {
- _this5._processPushButton(params);
- } else {
- (0, _util.warn)('Invalid field flags for button widget annotation');
- }
- return _this5;
- }
- _createClass(ButtonWidgetAnnotation, [{
- key: "_processCheckBox",
- value: function _processCheckBox(params) {
- if ((0, _primitives.isName)(this.data.fieldValue)) {
- this.data.fieldValue = this.data.fieldValue.name;
- }
- var customAppearance = params.dict.get('AP');
- if (!(0, _primitives.isDict)(customAppearance)) {
- return;
- }
- var exportValueOptionsDict = customAppearance.get('D');
- if (!(0, _primitives.isDict)(exportValueOptionsDict)) {
- return;
- }
- var exportValues = exportValueOptionsDict.getKeys();
- var hasCorrectOptionCount = exportValues.length === 2;
- if (!hasCorrectOptionCount) {
- return;
- }
- this.data.exportValue = exportValues[0] === 'Off' ? exportValues[1] : exportValues[0];
- }
- }, {
- key: "_processRadioButton",
- value: function _processRadioButton(params) {
- this.data.fieldValue = this.data.buttonValue = null;
- var fieldParent = params.dict.get('Parent');
- if ((0, _primitives.isDict)(fieldParent) && fieldParent.has('V')) {
- var fieldParentValue = fieldParent.get('V');
- if ((0, _primitives.isName)(fieldParentValue)) {
- this.data.fieldValue = fieldParentValue.name;
- }
- }
- var appearanceStates = params.dict.get('AP');
- if (!(0, _primitives.isDict)(appearanceStates)) {
- return;
- }
- var normalAppearanceState = appearanceStates.get('N');
- if (!(0, _primitives.isDict)(normalAppearanceState)) {
- return;
- }
- var keys = normalAppearanceState.getKeys();
- for (var i = 0, ii = keys.length; i < ii; i++) {
- if (keys[i] !== 'Off') {
- this.data.buttonValue = keys[i];
- break;
- }
- }
- }
- }, {
- key: "_processPushButton",
- value: function _processPushButton(params) {
- if (!params.dict.has('A')) {
- (0, _util.warn)('Push buttons without action dictionaries are not supported');
- return;
- }
- _obj.Catalog.parseDestDictionary({
- destDict: params.dict,
- resultObj: this.data,
- docBaseUrl: params.pdfManager.docBaseUrl
- });
- }
- }]);
- return ButtonWidgetAnnotation;
- }(WidgetAnnotation);
- var ChoiceWidgetAnnotation =
- /*#__PURE__*/
- function (_WidgetAnnotation3) {
- _inherits(ChoiceWidgetAnnotation, _WidgetAnnotation3);
- function ChoiceWidgetAnnotation(params) {
- var _this6;
- _classCallCheck(this, ChoiceWidgetAnnotation);
- _this6 = _possibleConstructorReturn(this, _getPrototypeOf(ChoiceWidgetAnnotation).call(this, params));
- _this6.data.options = [];
- var options = (0, _core_utils.getInheritableProperty)({
- dict: params.dict,
- key: 'Opt'
- });
- if (Array.isArray(options)) {
- var xref = params.xref;
- for (var i = 0, ii = options.length; i < ii; i++) {
- var option = xref.fetchIfRef(options[i]);
- var isOptionArray = Array.isArray(option);
- _this6.data.options[i] = {
- exportValue: isOptionArray ? xref.fetchIfRef(option[0]) : option,
- displayValue: (0, _util.stringToPDFString)(isOptionArray ? xref.fetchIfRef(option[1]) : option)
- };
- }
- }
- if (!Array.isArray(_this6.data.fieldValue)) {
- _this6.data.fieldValue = [_this6.data.fieldValue];
- }
- _this6.data.combo = _this6.hasFieldFlag(_util.AnnotationFieldFlag.COMBO);
- _this6.data.multiSelect = _this6.hasFieldFlag(_util.AnnotationFieldFlag.MULTISELECT);
- return _this6;
- }
- return ChoiceWidgetAnnotation;
- }(WidgetAnnotation);
- var TextAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation) {
- _inherits(TextAnnotation, _MarkupAnnotation);
- function TextAnnotation(parameters) {
- var _this7;
- _classCallCheck(this, TextAnnotation);
- var DEFAULT_ICON_SIZE = 22;
- _this7 = _possibleConstructorReturn(this, _getPrototypeOf(TextAnnotation).call(this, parameters));
- _this7.data.annotationType = _util.AnnotationType.TEXT;
- if (_this7.data.hasAppearance) {
- _this7.data.name = 'NoIcon';
- } else {
- _this7.data.rect[1] = _this7.data.rect[3] - DEFAULT_ICON_SIZE;
- _this7.data.rect[2] = _this7.data.rect[0] + DEFAULT_ICON_SIZE;
- _this7.data.name = parameters.dict.has('Name') ? parameters.dict.get('Name').name : 'Note';
- }
- return _this7;
- }
- return TextAnnotation;
- }(MarkupAnnotation);
- var LinkAnnotation =
- /*#__PURE__*/
- function (_Annotation3) {
- _inherits(LinkAnnotation, _Annotation3);
- function LinkAnnotation(params) {
- var _this8;
- _classCallCheck(this, LinkAnnotation);
- _this8 = _possibleConstructorReturn(this, _getPrototypeOf(LinkAnnotation).call(this, params));
- _this8.data.annotationType = _util.AnnotationType.LINK;
- _obj.Catalog.parseDestDictionary({
- destDict: params.dict,
- resultObj: _this8.data,
- docBaseUrl: params.pdfManager.docBaseUrl
- });
- return _this8;
- }
- return LinkAnnotation;
- }(Annotation);
- var PopupAnnotation =
- /*#__PURE__*/
- function (_Annotation4) {
- _inherits(PopupAnnotation, _Annotation4);
- function PopupAnnotation(parameters) {
- var _this9;
- _classCallCheck(this, PopupAnnotation);
- _this9 = _possibleConstructorReturn(this, _getPrototypeOf(PopupAnnotation).call(this, parameters));
- _this9.data.annotationType = _util.AnnotationType.POPUP;
- var dict = parameters.dict;
- var parentItem = dict.get('Parent');
- if (!parentItem) {
- (0, _util.warn)('Popup annotation has a missing or invalid parent annotation.');
- return _possibleConstructorReturn(_this9);
- }
- var parentSubtype = parentItem.get('Subtype');
- _this9.data.parentType = (0, _primitives.isName)(parentSubtype) ? parentSubtype.name : null;
- _this9.data.parentId = dict.getRaw('Parent').toString();
- _this9.data.title = (0, _util.stringToPDFString)(parentItem.get('T') || '');
- _this9.data.contents = (0, _util.stringToPDFString)(parentItem.get('Contents') || '');
- if (!parentItem.has('M')) {
- _this9.data.modificationDate = null;
- } else {
- _this9.setModificationDate(parentItem.get('M'));
- _this9.data.modificationDate = _this9.modificationDate;
- }
- if (!parentItem.has('C')) {
- _this9.data.color = null;
- } else {
- _this9.setColor(parentItem.getArray('C'));
- _this9.data.color = _this9.color;
- }
- if (!_this9.viewable) {
- var parentFlags = parentItem.get('F');
- if (_this9._isViewable(parentFlags)) {
- _this9.setFlags(parentFlags);
- }
- }
- return _this9;
- }
- return PopupAnnotation;
- }(Annotation);
- var FreeTextAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation2) {
- _inherits(FreeTextAnnotation, _MarkupAnnotation2);
- function FreeTextAnnotation(parameters) {
- var _this10;
- _classCallCheck(this, FreeTextAnnotation);
- _this10 = _possibleConstructorReturn(this, _getPrototypeOf(FreeTextAnnotation).call(this, parameters));
- _this10.data.annotationType = _util.AnnotationType.FREETEXT;
- return _this10;
- }
- return FreeTextAnnotation;
- }(MarkupAnnotation);
- var LineAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation3) {
- _inherits(LineAnnotation, _MarkupAnnotation3);
- function LineAnnotation(parameters) {
- var _this11;
- _classCallCheck(this, LineAnnotation);
- _this11 = _possibleConstructorReturn(this, _getPrototypeOf(LineAnnotation).call(this, parameters));
- _this11.data.annotationType = _util.AnnotationType.LINE;
- var dict = parameters.dict;
- _this11.data.lineCoordinates = _util.Util.normalizeRect(dict.getArray('L'));
- return _this11;
- }
- return LineAnnotation;
- }(MarkupAnnotation);
- var SquareAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation4) {
- _inherits(SquareAnnotation, _MarkupAnnotation4);
- function SquareAnnotation(parameters) {
- var _this12;
- _classCallCheck(this, SquareAnnotation);
- _this12 = _possibleConstructorReturn(this, _getPrototypeOf(SquareAnnotation).call(this, parameters));
- _this12.data.annotationType = _util.AnnotationType.SQUARE;
- return _this12;
- }
- return SquareAnnotation;
- }(MarkupAnnotation);
- var CircleAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation5) {
- _inherits(CircleAnnotation, _MarkupAnnotation5);
- function CircleAnnotation(parameters) {
- var _this13;
- _classCallCheck(this, CircleAnnotation);
- _this13 = _possibleConstructorReturn(this, _getPrototypeOf(CircleAnnotation).call(this, parameters));
- _this13.data.annotationType = _util.AnnotationType.CIRCLE;
- return _this13;
- }
- return CircleAnnotation;
- }(MarkupAnnotation);
- var PolylineAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation6) {
- _inherits(PolylineAnnotation, _MarkupAnnotation6);
- function PolylineAnnotation(parameters) {
- var _this14;
- _classCallCheck(this, PolylineAnnotation);
- _this14 = _possibleConstructorReturn(this, _getPrototypeOf(PolylineAnnotation).call(this, parameters));
- _this14.data.annotationType = _util.AnnotationType.POLYLINE;
- var dict = parameters.dict;
- var rawVertices = dict.getArray('Vertices');
- _this14.data.vertices = [];
- for (var i = 0, ii = rawVertices.length; i < ii; i += 2) {
- _this14.data.vertices.push({
- x: rawVertices[i],
- y: rawVertices[i + 1]
- });
- }
- return _this14;
- }
- return PolylineAnnotation;
- }(MarkupAnnotation);
- var PolygonAnnotation =
- /*#__PURE__*/
- function (_PolylineAnnotation) {
- _inherits(PolygonAnnotation, _PolylineAnnotation);
- function PolygonAnnotation(parameters) {
- var _this15;
- _classCallCheck(this, PolygonAnnotation);
- _this15 = _possibleConstructorReturn(this, _getPrototypeOf(PolygonAnnotation).call(this, parameters));
- _this15.data.annotationType = _util.AnnotationType.POLYGON;
- return _this15;
- }
- return PolygonAnnotation;
- }(PolylineAnnotation);
- var CaretAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation7) {
- _inherits(CaretAnnotation, _MarkupAnnotation7);
- function CaretAnnotation(parameters) {
- var _this16;
- _classCallCheck(this, CaretAnnotation);
- _this16 = _possibleConstructorReturn(this, _getPrototypeOf(CaretAnnotation).call(this, parameters));
- _this16.data.annotationType = _util.AnnotationType.CARET;
- return _this16;
- }
- return CaretAnnotation;
- }(MarkupAnnotation);
- var InkAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation8) {
- _inherits(InkAnnotation, _MarkupAnnotation8);
- function InkAnnotation(parameters) {
- var _this17;
- _classCallCheck(this, InkAnnotation);
- _this17 = _possibleConstructorReturn(this, _getPrototypeOf(InkAnnotation).call(this, parameters));
- _this17.data.annotationType = _util.AnnotationType.INK;
- var dict = parameters.dict;
- var xref = parameters.xref;
- var originalInkLists = dict.getArray('InkList');
- _this17.data.inkLists = [];
- for (var i = 0, ii = originalInkLists.length; i < ii; ++i) {
- _this17.data.inkLists.push([]);
- for (var j = 0, jj = originalInkLists[i].length; j < jj; j += 2) {
- _this17.data.inkLists[i].push({
- x: xref.fetchIfRef(originalInkLists[i][j]),
- y: xref.fetchIfRef(originalInkLists[i][j + 1])
- });
- }
- }
- return _this17;
- }
- return InkAnnotation;
- }(MarkupAnnotation);
- var HighlightAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation9) {
- _inherits(HighlightAnnotation, _MarkupAnnotation9);
- function HighlightAnnotation(parameters) {
- var _this18;
- _classCallCheck(this, HighlightAnnotation);
- _this18 = _possibleConstructorReturn(this, _getPrototypeOf(HighlightAnnotation).call(this, parameters));
- _this18.data.annotationType = _util.AnnotationType.HIGHLIGHT;
- return _this18;
- }
- return HighlightAnnotation;
- }(MarkupAnnotation);
- var UnderlineAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation10) {
- _inherits(UnderlineAnnotation, _MarkupAnnotation10);
- function UnderlineAnnotation(parameters) {
- var _this19;
- _classCallCheck(this, UnderlineAnnotation);
- _this19 = _possibleConstructorReturn(this, _getPrototypeOf(UnderlineAnnotation).call(this, parameters));
- _this19.data.annotationType = _util.AnnotationType.UNDERLINE;
- return _this19;
- }
- return UnderlineAnnotation;
- }(MarkupAnnotation);
- var SquigglyAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation11) {
- _inherits(SquigglyAnnotation, _MarkupAnnotation11);
- function SquigglyAnnotation(parameters) {
- var _this20;
- _classCallCheck(this, SquigglyAnnotation);
- _this20 = _possibleConstructorReturn(this, _getPrototypeOf(SquigglyAnnotation).call(this, parameters));
- _this20.data.annotationType = _util.AnnotationType.SQUIGGLY;
- return _this20;
- }
- return SquigglyAnnotation;
- }(MarkupAnnotation);
- var StrikeOutAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation12) {
- _inherits(StrikeOutAnnotation, _MarkupAnnotation12);
- function StrikeOutAnnotation(parameters) {
- var _this21;
- _classCallCheck(this, StrikeOutAnnotation);
- _this21 = _possibleConstructorReturn(this, _getPrototypeOf(StrikeOutAnnotation).call(this, parameters));
- _this21.data.annotationType = _util.AnnotationType.STRIKEOUT;
- return _this21;
- }
- return StrikeOutAnnotation;
- }(MarkupAnnotation);
- var StampAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation13) {
- _inherits(StampAnnotation, _MarkupAnnotation13);
- function StampAnnotation(parameters) {
- var _this22;
- _classCallCheck(this, StampAnnotation);
- _this22 = _possibleConstructorReturn(this, _getPrototypeOf(StampAnnotation).call(this, parameters));
- _this22.data.annotationType = _util.AnnotationType.STAMP;
- return _this22;
- }
- return StampAnnotation;
- }(MarkupAnnotation);
- var FileAttachmentAnnotation =
- /*#__PURE__*/
- function (_MarkupAnnotation14) {
- _inherits(FileAttachmentAnnotation, _MarkupAnnotation14);
- function FileAttachmentAnnotation(parameters) {
- var _this23;
- _classCallCheck(this, FileAttachmentAnnotation);
- _this23 = _possibleConstructorReturn(this, _getPrototypeOf(FileAttachmentAnnotation).call(this, parameters));
- var file = new _obj.FileSpec(parameters.dict.get('FS'), parameters.xref);
- _this23.data.annotationType = _util.AnnotationType.FILEATTACHMENT;
- _this23.data.file = file.serializable;
- return _this23;
- }
- return FileAttachmentAnnotation;
- }(MarkupAnnotation);
|