@syncfusion/ej2-pdf 25.1.39 → 25.1.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13002,6 +13002,7 @@ var _JsonDocument = /** @__PURE__ @class */ (function (_super) {
13002
13002
  function _JsonDocument(fileName) {
13003
13003
  var _this = _super.call(this) || this;
13004
13004
  _this._isImport = false;
13005
+ _this._isColorSpace = false;
13005
13006
  if (fileName !== null && typeof fileName !== 'undefined') {
13006
13007
  _this._fileName = fileName;
13007
13008
  }
@@ -13587,16 +13588,31 @@ var _JsonDocument = /** @__PURE__ @class */ (function (_super) {
13587
13588
  }
13588
13589
  };
13589
13590
  _JsonDocument.prototype._writeObject = function (table, value, dictionary, key, array) {
13591
+ var _this = this;
13590
13592
  if (value instanceof _PdfName) {
13591
13593
  this._writeTable('name', value.name, table, key, array);
13592
13594
  }
13593
13595
  else if (Array.isArray(value)) {
13594
13596
  var list = [];
13597
+ if (key === 'ColorSpace') {
13598
+ value.forEach(function (element) {
13599
+ if (typeof element === 'string') {
13600
+ _this._isColorSpace = true;
13601
+ }
13602
+ });
13603
+ }
13595
13604
  this._writeArray(list, value, dictionary);
13605
+ this._isColorSpace = false;
13596
13606
  this._writeTable('array', this._convertToJsonArray(list), table, key, array);
13597
13607
  }
13598
13608
  else if (typeof value === 'string') {
13599
- this._writeTable('string', value, table, key, array);
13609
+ if (this._isColorSpace) {
13610
+ var bytes = _stringToBytes(value);
13611
+ this._writeTable('unicodeData', _byteArrayToHexString(bytes), table, key, array);
13612
+ }
13613
+ else {
13614
+ this._writeTable('string', value, table, key, array);
13615
+ }
13600
13616
  }
13601
13617
  else if (typeof value === 'number') {
13602
13618
  this._writeTable(Number.isInteger(value) ? 'int' : 'fixed', value.toString(), table, key, array);
@@ -13623,6 +13639,13 @@ var _JsonDocument = /** @__PURE__ @class */ (function (_super) {
13623
13639
  var stream = baseStream.stream;
13624
13640
  data = baseStream.getString(true, stream.getByteRange(stream.start, stream.end));
13625
13641
  }
13642
+ else if (baseStream.stream && baseStream.stream.stream) {
13643
+ var flateStream = baseStream.stream; // eslint-disable-line
13644
+ if (flateStream.stream && flateStream.stream instanceof _PdfStream) {
13645
+ var stream = flateStream.stream;
13646
+ data = flateStream.getString(true, stream.getByteRange(stream.start, stream.end));
13647
+ }
13648
+ }
13626
13649
  else {
13627
13650
  data = value.getString(true);
13628
13651
  }
@@ -14467,6 +14490,9 @@ var _JsonDocument = /** @__PURE__ @class */ (function (_super) {
14467
14490
  stream.dictionary.objId = value.objectNumber + ' ' + value.generationNumber;
14468
14491
  this._crossReference._cacheMap.set(value, stream);
14469
14492
  }
14493
+ else if (keys.indexOf('unicodeData') !== -1) {
14494
+ value = _bytesToString(_hexStringToByteArray(element.unicodeData, true));
14495
+ }
14470
14496
  else {
14471
14497
  value = null;
14472
14498
  }
@@ -37882,7 +37908,10 @@ var PdfPage = /** @__PURE__ @class */ (function () {
37882
37908
  if (this._pageDictionary.has('Annots')) {
37883
37909
  var annots = this._getProperty('Annots');
37884
37910
  if (annots && Array.isArray(annots)) {
37885
- var widgets_1 = this._crossReference._document.form._parseWidgetReferences();
37911
+ var widgets_1;
37912
+ if (this._crossReference._document._catalog._catalogDictionary.has('AcroForm')) {
37913
+ widgets_1 = this._crossReference._document.form._parseWidgetReferences();
37914
+ }
37886
37915
  if (widgets_1 && widgets_1.length > 0) {
37887
37916
  var validAnnotations_1 = [];
37888
37917
  annots.forEach(function (entry) {
@@ -44797,6 +44826,40 @@ function _decodeText(text, isColorSpace, isPassword) {
44797
44826
  }
44798
44827
  return text;
44799
44828
  }
44829
+ /**
44830
+ * Number of bytes required to save the number.
44831
+ *
44832
+ * @param {number} input number.
44833
+ * @returns {number} number of bytes.
44834
+ */
44835
+ function _getSize(input) {
44836
+ var size = 0;
44837
+ var uintMaxValue = 0xFFFFFFFF;
44838
+ var ushortMaxValue = 0xFFFF;
44839
+ var byteMaxValue = 0xFF;
44840
+ if (input <= uintMaxValue) {
44841
+ if (input <= ushortMaxValue) {
44842
+ if (input <= byteMaxValue) {
44843
+ size = 1;
44844
+ }
44845
+ else {
44846
+ size = 2;
44847
+ }
44848
+ }
44849
+ else {
44850
+ if (input <= (ushortMaxValue | (ushortMaxValue << 8))) {
44851
+ size = 3;
44852
+ }
44853
+ else {
44854
+ size = 4;
44855
+ }
44856
+ }
44857
+ }
44858
+ else {
44859
+ size = 8;
44860
+ }
44861
+ return size;
44862
+ }
44800
44863
 
44801
44864
  /* eslint-disable */
44802
44865
  var nameCache = Object.create(null);
@@ -46326,6 +46389,8 @@ var _PdfCatalog = /** @__PURE__ @class */ (function () {
46326
46389
  this._crossReference._cacheMap.set(ref, form);
46327
46390
  this._catalogDictionary.set('AcroForm', ref);
46328
46391
  this._catalogDictionary._updated = true;
46392
+ this._crossReference._allowCatalog = true;
46393
+ form._updated = true;
46329
46394
  return form;
46330
46395
  };
46331
46396
  _PdfCatalog.prototype.getPageDictionary = function (pageIndex) {
@@ -50026,39 +50091,40 @@ var _PdfCrossReference = /** @__PURE__ @class */ (function () {
50026
50091
  }
50027
50092
  this._writeObject(archiveStream, buffer, archiveRef, cipher_2);
50028
50093
  }
50094
+ var formatValue = Math.max(_getSize(this._stream.bytes.length + buffer.length), _getSize(this._nextReferenceNumber));
50029
50095
  var newRef = this._getNextReference();
50030
50096
  var newStartXref = currentLength + buffer.length;
50031
50097
  var newXref = new _PdfDictionary(this);
50032
50098
  newXref.set('Type', _PdfName.get('XRef'));
50033
50099
  newXref.set('Index', indexes_1);
50034
- newXref.set('W', [1, 3, 1]);
50100
+ newXref.set('W', [1, formatValue, 1]);
50035
50101
  this._copyTrailer(newXref);
50036
50102
  if (this._ids && this._ids.length > 0) {
50037
50103
  newXref.update('ID', [this._ids[0], this._computeMessageDigest(newStartXref)]);
50038
50104
  }
50039
50105
  var newXrefData = [];
50040
50106
  this._writeLong(0, 1, newXrefData);
50041
- this._writeLong(1, 3, newXrefData);
50107
+ this._writeLong(1, formatValue, newXrefData);
50042
50108
  this._writeLong(-1, 1, newXrefData);
50043
50109
  if (uncompressedCount > 0) {
50044
50110
  for (var index = 0; index < uncompressedCount; index++) {
50045
50111
  this._writeLong(1, 1, newXrefData);
50046
- this._writeLong(uncompressedOffsets_1[index], 3, newXrefData); // eslint-disable-line
50112
+ this._writeLong(uncompressedOffsets_1[index], formatValue, newXrefData); // eslint-disable-line
50047
50113
  this._writeLong(0, 1, newXrefData);
50048
50114
  }
50049
50115
  }
50050
50116
  if (updatedCount > 0) {
50051
50117
  for (var index = 0; index < updatedCount; index++) {
50052
50118
  this._writeLong(2, 1, newXrefData);
50053
- this._writeLong(archiveRef.objectNumber, 3, newXrefData);
50119
+ this._writeLong(archiveRef.objectNumber, formatValue, newXrefData);
50054
50120
  this._writeLong(index, 1, newXrefData);
50055
50121
  }
50056
50122
  this._writeLong(1, 1, newXrefData);
50057
- this._writeLong(archiveOffset, 3, newXrefData);
50123
+ this._writeLong(archiveOffset, formatValue, newXrefData);
50058
50124
  this._writeLong(0, 1, newXrefData);
50059
50125
  }
50060
50126
  this._writeLong(1, 1, newXrefData);
50061
- this._writeLong(newStartXref, 3, newXrefData);
50127
+ this._writeLong(newStartXref, formatValue, newXrefData);
50062
50128
  this._writeLong(0, 1, newXrefData);
50063
50129
  newXref.set('Length', newXrefData.length);
50064
50130
  var newXrefStream = new _PdfStream(newXrefData, newXref, 0, newXrefData.length);
@@ -50110,7 +50176,8 @@ var _PdfCrossReference = /** @__PURE__ @class */ (function () {
50110
50176
  return array;
50111
50177
  };
50112
50178
  _PdfCrossReference.prototype._copyTrailer = function (newXref) {
50113
- newXref.set('Size', this._nextReferenceNumber);
50179
+ var reference = this._getNextReference();
50180
+ newXref.set('Size', reference.objectNumber);
50114
50181
  newXref.set('Prev', this._prevXRefOffset);
50115
50182
  var root = this._trailer.getRaw('Root'); // eslint-disable-line
50116
50183
  if (typeof root !== 'undefined' && root !== null) {
@@ -50576,7 +50643,6 @@ var PdfForm = /** @__PURE__ @class */ (function () {
50576
50643
  this._dictionary.update('Fields', this._fields);
50577
50644
  this._parsedFields.set(this._fields.length - 1, field);
50578
50645
  field._form = this;
50579
- this._crossReference._allowCatalog = true;
50580
50646
  this._crossReference._root._updated = true;
50581
50647
  if (field._kidsCount > 0) {
50582
50648
  for (var i = 0; i < field._kidsCount; i++) {
@@ -53913,19 +53979,21 @@ var PdfDocument = /** @__PURE__ @class */ (function () {
53913
53979
  };
53914
53980
  PdfDocument.prototype._doPostProcessOnFormFields = function (isFlatten) {
53915
53981
  if (isFlatten === void 0) { isFlatten = false; }
53916
- this.form._doPostProcess(isFlatten);
53917
- if (isFlatten) {
53918
- var formObject = this._catalog._catalogDictionary.getRaw('AcroForm');
53919
- var dictionary = new _PdfDictionary(this._crossReference);
53920
- dictionary._updated = true;
53921
- if (formObject instanceof _PdfReference) {
53922
- this._crossReference._cacheMap.set(formObject, dictionary);
53923
- }
53924
- else {
53925
- this.form._dictionary = dictionary;
53926
- this._crossReference._allowCatalog = true;
53982
+ if (this._catalog._catalogDictionary.has('AcroForm')) {
53983
+ this.form._doPostProcess(isFlatten);
53984
+ if (isFlatten) {
53985
+ var formObject = this._catalog._catalogDictionary.getRaw('AcroForm');
53986
+ var dictionary = new _PdfDictionary(this._crossReference);
53987
+ dictionary._updated = true;
53988
+ if (formObject instanceof _PdfReference) {
53989
+ this._crossReference._cacheMap.set(formObject, dictionary);
53990
+ }
53991
+ else {
53992
+ this.form._dictionary = dictionary;
53993
+ this._crossReference._allowCatalog = true;
53994
+ }
53995
+ this.form._clear();
53927
53996
  }
53928
- this.form._clear();
53929
53997
  }
53930
53998
  };
53931
53999
  PdfDocument.prototype._doPostProcessOnAnnotations = function (isFlatten) {
@@ -54919,5 +54987,5 @@ var PdfBitmap = /** @__PURE__ @class */ (function (_super) {
54919
54987
  return PdfBitmap;
54920
54988
  }(PdfImage));
54921
54989
 
54922
- export { _PdfBaseStream, _PdfStream, _PdfContentStream, _PdfNullStream, _ContentParser, _ContentLexer, _PdfRecord, _PdfDecodeStream, _PdfDecryptStream, PdfAnnotationFlag, PdfLineEndingStyle, PdfLineIntent, PdfLineCaptionType, PdfBorderStyle, PdfBorderEffectStyle, PdfRotationAngle, PdfCrossReferenceType, PdfHighlightMode, PdfTextAlignment, PdfFormFieldVisibility, PdfMeasurementUnit, PdfCircleMeasurementType, PdfRubberStampAnnotationIcon, PdfCheckBoxStyle, PdfTextMarkupAnnotationType, PdfPopupIcon, PdfAnnotationState, PdfAnnotationStateModel, PdfAttachmentIcon, PdfAnnotationIntent, PdfDestinationMode, DataFormat, PdfFormFieldsTabOrder, _PdfAnnotationType, _PdfGraphicsUnit, _FieldFlag, _SignatureFlag, _PdfCheckFieldState, PdfPermissionFlag, PdfPageOrientation, PdfTextDirection, PdfSubSuperScript, PdfBlendMode, PdfFillMode, PdfDashStyle, PdfLineCap, PdfLineJoin, _PdfWordWrapType, _FontDescriptorFlag, _TrueTypeCmapFormat, _TrueTypeCmapEncoding, _TrueTypePlatformID, _TrueTypeMicrosoftEncodingID, _TrueTypeMacintoshEncodingID, _TrueTypeCompositeGlyphFlag, _ImageFormat, _TokenType, PdfTextStyle, _PdfColorSpace, _PdfFlateStream, _PdfCatalog, _PdfCrossReference, PdfDocument, PdfAnnotationExportSettings, PdfFormFieldExportSettings, PdfPageSettings, PdfMargins, PdfFileStructure, PdfPage, PdfDestination, PdfBookmarkBase, PdfBookmark, PdfNamedDestination, _PdfNamedDestinationCollection, _PdfLexicalOperator, _PdfParser, _Linearization, _PdfName, _PdfCommand, _PdfReference, _PdfReferenceSet, _PdfReferenceSetCache, Dictionary, _PdfDictionary, _PdfNull, _clearPrimitiveCaches, _isName, _isCommand, PdfPredictorStream, _toUnsigned, _toSigned16, _toSigned32, _copyRange, _checkType, _getDecoder, _checkRotation, _getPageIndex, _annotationFlagsToString, _stringToAnnotationFlags, _stringToPdfString, _stringToBytes, _convertStringToBytes, _areArrayEqual, _numberToString, _areNotEqual, _bytesToString, _stringToUnicodeArray, _byteArrayToHexString, _hexStringToByteArray, _hexStringToString, _isWhiteSpace, _decode, _encode, _getInheritableProperty, _parseRectangle, _calculateBounds, _toRectangle, _fromRectangle, _getUpdatedBounds, _convertToColor, _parseColor, _mapBorderStyle, _mapBorderEffectStyle, _reverseMapEndingStyle, _mapLineEndingStyle, _mapHighlightMode, _reverseMapHighlightMode, _reverseMapBlendMode, _mapBlendMode, _floatToString, _addProcSet, _getNewGuidString, _escapePdfName, _getBezierArc, _findPage, _checkField, _getItemValue, _getStateTemplate, _getColorValue, _setMatrix, _styleToString, _stringToStyle, _mapMeasurementUnit, _mapMarkupAnnotationType, _reverseMarkupAnnotationType, _mapGraphicsUnit, _mapRubberStampIcon, _mapPopupIcon, _reverseMapAnnotationState, _mapAnnotationState, _reverseMapAnnotationStateModel, _mapAnnotationStateModel, _mapAttachmentIcon, _mapAnnotationIntent, _reverseMapPdfFontStyle, _getSpecialCharacter, _getLatinCharacter, _encodeValue, _getCommentsOrReview, _checkReview, _checkComment, _updateVisibility, _removeDuplicateReference, _removeDuplicateFromResources, _removeReferences, BaseException, FormatError, ParserEndOfFileException, _defaultToString, _obtainFontDetails, _getFontStyle, _mapFont, _tryParseFontStream, _checkInkPoints, _obtainDestination, _updateBounds, _decodeText, PdfAnnotationCollection, PdfPopupAnnotationCollection, PdfAnnotation, PdfComment, PdfLineAnnotation, PdfCircleAnnotation, PdfEllipseAnnotation, PdfSquareAnnotation, PdfRectangleAnnotation, PdfPolygonAnnotation, PdfPolyLineAnnotation, PdfAngleMeasurementAnnotation, PdfInkAnnotation, PdfPopupAnnotation, PdfFileLinkAnnotation, PdfUriAnnotation, PdfDocumentLinkAnnotation, PdfTextWebLinkAnnotation, PdfAttachmentAnnotation, Pdf3DAnnotation, PdfTextMarkupAnnotation, PdfWatermarkAnnotation, PdfRubberStampAnnotation, PdfSoundAnnotation, PdfFreeTextAnnotation, PdfRedactionAnnotation, PdfRichMediaAnnotation, PdfWidgetAnnotation, PdfStateItem, PdfRadioButtonListItem, PdfListFieldItem, PdfAnnotationCaption, PdfAnnotationLineEndingStyle, PdfInteractiveBorder, PdfAnnotationBorder, PdfBorderEffect, _PaintParameter, PdfAppearance, _PdfPaddings, _DecompressedOutput, _DeflateStream, _Inflater, _HuffmanTree, _InBuffer, _InflaterState, _BlockType, _PdfFontMetrics, _WidthTable, _StandardWidthTable, _CjkWidthTable, _CjkWidth, _CjkSameWidth, _CjkDifferentWidth, PdfFont, PdfStandardFont, PdfCjkStandardFont, PdfTrueTypeFont, _PdfStandardFontMetricsFactory, _PdfCjkStandardFontMetricsFactory, _PdfCjkFontDescriptorFactory, PdfFontStyle, PdfFontFamily, PdfCjkFontFamily, _UnicodeLine, PdfStringFormat, PdfVerticalAlignment, _PdfStringLayouter, _PdfStringLayoutResult, _LineInfo, _LineType, _StringTokenizer, _TrueTypeReader, _TrueTypeNameRecord, _TrueTypeMetrics, _TrueTypeLongHorMetric, _TrueTypeGlyph, _TrueTypeLocaTable, _TrueTypeGlyphHeader, _BigEndianWriter, _TrueTypeTableInfo, _TrueTypeOS2Table, _TrueTypePostTable, _TrueTypeNameTable, _TrueTypeMicrosoftCmapSubTable, _TrueTypeHorizontalHeaderTable, _TrueTypeHeadTable, _TrueTypeCmapTable, _TrueTypeCmapSubTable, _TrueTypeAppleCmapSubTable, _TrueTypeTrimmedCmapSubTable, _UnicodeTrueTypeFont, PdfField, PdfTextBoxField, PdfButtonField, PdfCheckBoxField, PdfRadioButtonListField, PdfListField, PdfComboBoxField, PdfListBoxField, PdfSignatureField, _PdfDefaultAppearance, PdfForm, PdfGraphics, _PdfTransformationMatrix, _Matrix, PdfGraphicsState, _TextRenderingMode, PdfBrush, PdfPen, _PdfUnitConvertor, _PdfPath, _PathPointType, _PdfStreamWriter, PdfTemplate, _Bidirectional, _RtlCharacters, _ArabicShapeRenderer, _ArabicShape, _RtlRenderer, _ImageDecoder, PdfBitmap, PdfImage, _PngDecoder, _JpegDecoder, _PdfEncryptor, _MD5, _Sha256, _Sha512, _Word64, _EncryptionKey, _BasicEncryption, _AdvancedEncryption, _Cipher, _NormalCipherFour, _AdvancedEncryptionBaseCipher, _AdvancedEncryption128Cipher, _AdvancedEncryption256Cipher, _NullCipher, _CipherTransform, _ExportHelper, _XfdfDocument, _FontStructure, _XmlWriter, _Namespace, _XmlElement, _XmlAttribute, _FdfDocument, _FdfHelper, _JsonDocument, _XmlDocument };
54990
+ export { _PdfBaseStream, _PdfStream, _PdfContentStream, _PdfNullStream, _ContentParser, _ContentLexer, _PdfRecord, _PdfDecodeStream, _PdfDecryptStream, PdfAnnotationFlag, PdfLineEndingStyle, PdfLineIntent, PdfLineCaptionType, PdfBorderStyle, PdfBorderEffectStyle, PdfRotationAngle, PdfCrossReferenceType, PdfHighlightMode, PdfTextAlignment, PdfFormFieldVisibility, PdfMeasurementUnit, PdfCircleMeasurementType, PdfRubberStampAnnotationIcon, PdfCheckBoxStyle, PdfTextMarkupAnnotationType, PdfPopupIcon, PdfAnnotationState, PdfAnnotationStateModel, PdfAttachmentIcon, PdfAnnotationIntent, PdfDestinationMode, DataFormat, PdfFormFieldsTabOrder, _PdfAnnotationType, _PdfGraphicsUnit, _FieldFlag, _SignatureFlag, _PdfCheckFieldState, PdfPermissionFlag, PdfPageOrientation, PdfTextDirection, PdfSubSuperScript, PdfBlendMode, PdfFillMode, PdfDashStyle, PdfLineCap, PdfLineJoin, _PdfWordWrapType, _FontDescriptorFlag, _TrueTypeCmapFormat, _TrueTypeCmapEncoding, _TrueTypePlatformID, _TrueTypeMicrosoftEncodingID, _TrueTypeMacintoshEncodingID, _TrueTypeCompositeGlyphFlag, _ImageFormat, _TokenType, PdfTextStyle, _PdfColorSpace, _PdfFlateStream, _PdfCatalog, _PdfCrossReference, PdfDocument, PdfAnnotationExportSettings, PdfFormFieldExportSettings, PdfPageSettings, PdfMargins, PdfFileStructure, PdfPage, PdfDestination, PdfBookmarkBase, PdfBookmark, PdfNamedDestination, _PdfNamedDestinationCollection, _PdfLexicalOperator, _PdfParser, _Linearization, _PdfName, _PdfCommand, _PdfReference, _PdfReferenceSet, _PdfReferenceSetCache, Dictionary, _PdfDictionary, _PdfNull, _clearPrimitiveCaches, _isName, _isCommand, PdfPredictorStream, _toUnsigned, _toSigned16, _toSigned32, _copyRange, _checkType, _getDecoder, _checkRotation, _getPageIndex, _annotationFlagsToString, _stringToAnnotationFlags, _stringToPdfString, _stringToBytes, _convertStringToBytes, _areArrayEqual, _numberToString, _areNotEqual, _bytesToString, _stringToUnicodeArray, _byteArrayToHexString, _hexStringToByteArray, _hexStringToString, _isWhiteSpace, _decode, _encode, _getInheritableProperty, _parseRectangle, _calculateBounds, _toRectangle, _fromRectangle, _getUpdatedBounds, _convertToColor, _parseColor, _mapBorderStyle, _mapBorderEffectStyle, _reverseMapEndingStyle, _mapLineEndingStyle, _mapHighlightMode, _reverseMapHighlightMode, _reverseMapBlendMode, _mapBlendMode, _floatToString, _addProcSet, _getNewGuidString, _escapePdfName, _getBezierArc, _findPage, _checkField, _getItemValue, _getStateTemplate, _getColorValue, _setMatrix, _styleToString, _stringToStyle, _mapMeasurementUnit, _mapMarkupAnnotationType, _reverseMarkupAnnotationType, _mapGraphicsUnit, _mapRubberStampIcon, _mapPopupIcon, _reverseMapAnnotationState, _mapAnnotationState, _reverseMapAnnotationStateModel, _mapAnnotationStateModel, _mapAttachmentIcon, _mapAnnotationIntent, _reverseMapPdfFontStyle, _getSpecialCharacter, _getLatinCharacter, _encodeValue, _getCommentsOrReview, _checkReview, _checkComment, _updateVisibility, _removeDuplicateReference, _removeDuplicateFromResources, _removeReferences, BaseException, FormatError, ParserEndOfFileException, _defaultToString, _obtainFontDetails, _getFontStyle, _mapFont, _tryParseFontStream, _checkInkPoints, _obtainDestination, _updateBounds, _decodeText, _getSize, PdfAnnotationCollection, PdfPopupAnnotationCollection, PdfAnnotation, PdfComment, PdfLineAnnotation, PdfCircleAnnotation, PdfEllipseAnnotation, PdfSquareAnnotation, PdfRectangleAnnotation, PdfPolygonAnnotation, PdfPolyLineAnnotation, PdfAngleMeasurementAnnotation, PdfInkAnnotation, PdfPopupAnnotation, PdfFileLinkAnnotation, PdfUriAnnotation, PdfDocumentLinkAnnotation, PdfTextWebLinkAnnotation, PdfAttachmentAnnotation, Pdf3DAnnotation, PdfTextMarkupAnnotation, PdfWatermarkAnnotation, PdfRubberStampAnnotation, PdfSoundAnnotation, PdfFreeTextAnnotation, PdfRedactionAnnotation, PdfRichMediaAnnotation, PdfWidgetAnnotation, PdfStateItem, PdfRadioButtonListItem, PdfListFieldItem, PdfAnnotationCaption, PdfAnnotationLineEndingStyle, PdfInteractiveBorder, PdfAnnotationBorder, PdfBorderEffect, _PaintParameter, PdfAppearance, _PdfPaddings, _DecompressedOutput, _DeflateStream, _Inflater, _HuffmanTree, _InBuffer, _InflaterState, _BlockType, _PdfFontMetrics, _WidthTable, _StandardWidthTable, _CjkWidthTable, _CjkWidth, _CjkSameWidth, _CjkDifferentWidth, PdfFont, PdfStandardFont, PdfCjkStandardFont, PdfTrueTypeFont, _PdfStandardFontMetricsFactory, _PdfCjkStandardFontMetricsFactory, _PdfCjkFontDescriptorFactory, PdfFontStyle, PdfFontFamily, PdfCjkFontFamily, _UnicodeLine, PdfStringFormat, PdfVerticalAlignment, _PdfStringLayouter, _PdfStringLayoutResult, _LineInfo, _LineType, _StringTokenizer, _TrueTypeReader, _TrueTypeNameRecord, _TrueTypeMetrics, _TrueTypeLongHorMetric, _TrueTypeGlyph, _TrueTypeLocaTable, _TrueTypeGlyphHeader, _BigEndianWriter, _TrueTypeTableInfo, _TrueTypeOS2Table, _TrueTypePostTable, _TrueTypeNameTable, _TrueTypeMicrosoftCmapSubTable, _TrueTypeHorizontalHeaderTable, _TrueTypeHeadTable, _TrueTypeCmapTable, _TrueTypeCmapSubTable, _TrueTypeAppleCmapSubTable, _TrueTypeTrimmedCmapSubTable, _UnicodeTrueTypeFont, PdfField, PdfTextBoxField, PdfButtonField, PdfCheckBoxField, PdfRadioButtonListField, PdfListField, PdfComboBoxField, PdfListBoxField, PdfSignatureField, _PdfDefaultAppearance, PdfForm, PdfGraphics, _PdfTransformationMatrix, _Matrix, PdfGraphicsState, _TextRenderingMode, PdfBrush, PdfPen, _PdfUnitConvertor, _PdfPath, _PathPointType, _PdfStreamWriter, PdfTemplate, _Bidirectional, _RtlCharacters, _ArabicShapeRenderer, _ArabicShape, _RtlRenderer, _ImageDecoder, PdfBitmap, PdfImage, _PngDecoder, _JpegDecoder, _PdfEncryptor, _MD5, _Sha256, _Sha512, _Word64, _EncryptionKey, _BasicEncryption, _AdvancedEncryption, _Cipher, _NormalCipherFour, _AdvancedEncryptionBaseCipher, _AdvancedEncryption128Cipher, _AdvancedEncryption256Cipher, _NullCipher, _CipherTransform, _ExportHelper, _XfdfDocument, _FontStructure, _XmlWriter, _Namespace, _XmlElement, _XmlAttribute, _FdfDocument, _FdfHelper, _JsonDocument, _XmlDocument };
54923
54991
  //# sourceMappingURL=ej2-pdf.es5.js.map