@syncfusion/ej2-pdf 25.1.38 → 25.1.39

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.
@@ -18485,8 +18485,7 @@ var PdfTextBoxField = /** @__PURE__ @class */ (function (_super) {
18485
18485
  }
18486
18486
  }
18487
18487
  parameter.bounds[2] = width;
18488
- format.alignment = PdfTextAlignment.center;
18489
- this._drawTextBox(g, parameter, text, font, format, multiline, scroll);
18488
+ this._drawTextBox(g, parameter, text, font, new PdfStringFormat(PdfTextAlignment.center), multiline, scroll);
18490
18489
  parameter.bounds[0] = parameter.bounds[0] + width;
18491
18490
  if (parameter.borderWidth) {
18492
18491
  g.drawLine(parameter.borderPen, parameter.bounds[0], parameter.bounds[1], parameter.bounds[0], parameter.bounds[1] + parameter.bounds[3]);
@@ -30792,33 +30791,53 @@ var PdfDocumentLinkAnnotation = /** @__PURE__ @class */ (function (_super) {
30792
30791
  }
30793
30792
  if (holder) {
30794
30793
  var index = _getPageIndex(this._crossReference._document, this._crossReference._fetch(holder));
30795
- var page = this._crossReference._document.getPage(index);
30796
- if (array[1] instanceof _PdfName) {
30797
- var mode = array[1];
30798
- if (mode) {
30799
- if (mode.name === 'XYZ') {
30800
- var left = array[2];
30801
- var top_4 = array[3];
30802
- var zoom = array[4];
30803
- var topValue = (typeof top_4 !== 'undefined' && top_4 !== null) ? (page.size[1] - top_4) : 0;
30804
- var leftValue = (typeof left !== 'undefined' && left !== null) ? left : 0;
30805
- this._destination = new PdfDestination(page, [leftValue, topValue]);
30806
- if (typeof zoom !== 'undefined' && zoom !== null) {
30807
- this._destination.zoom = zoom;
30808
- }
30809
- if ((typeof left === 'undefined' && left === null) || (typeof top_4 === 'undefined' && top_4 === null)
30810
- || (typeof zoom === 'undefined' && zoom === null)) {
30811
- this._destination._setValidation(false);
30794
+ if (index >= 0) {
30795
+ var page = this._crossReference._document.getPage(index);
30796
+ if (page && array[1] instanceof _PdfName) {
30797
+ var mode = array[1];
30798
+ if (mode) {
30799
+ if (mode.name === 'XYZ') {
30800
+ var left = array[2];
30801
+ var top_4 = array[3];
30802
+ var zoom = array[4];
30803
+ var topValue = (typeof top_4 !== 'undefined' && top_4 !== null) ? (page.size[1] - top_4) : 0;
30804
+ var leftValue = (typeof left !== 'undefined' && left !== null) ? left : 0;
30805
+ this._destination = new PdfDestination(page, [leftValue, topValue]);
30806
+ if (typeof zoom !== 'undefined' && zoom !== null) {
30807
+ this._destination.zoom = zoom;
30808
+ }
30809
+ if ((typeof left === 'undefined' && left === null) || (typeof top_4 === 'undefined' && top_4 === null)
30810
+ || (typeof zoom === 'undefined' && zoom === null)) {
30811
+ this._destination._setValidation(false);
30812
+ }
30812
30813
  }
30813
- }
30814
- else {
30815
- if (page && mode.name === 'Fit') {
30814
+ else if (mode.name === 'Fit') {
30816
30815
  this._destination = new PdfDestination(page);
30817
30816
  this._destination.mode = PdfDestinationMode.fitToPage;
30818
30817
  }
30819
30818
  }
30820
30819
  }
30821
30820
  }
30821
+ else {
30822
+ this._destination = new PdfDestination();
30823
+ var zoom = array[4];
30824
+ var mode = array[1];
30825
+ if (typeof zoom !== 'undefined' && zoom !== null) {
30826
+ this._destination.zoom = zoom;
30827
+ }
30828
+ if (mode.name === 'Fit') {
30829
+ this._destination.mode = PdfDestinationMode.fitToPage;
30830
+ }
30831
+ else if (mode.name === 'XYZ') {
30832
+ var left = array[2];
30833
+ var topValue = array[3];
30834
+ if ((typeof left === 'undefined' && left === null) || (typeof topValue === 'undefined' && topValue === null)
30835
+ || (typeof zoom === 'undefined' && zoom === null)) {
30836
+ this._destination._setValidation(false);
30837
+ }
30838
+ }
30839
+ this._destination._index = index;
30840
+ }
30822
30841
  }
30823
30842
  }
30824
30843
  else if (this._dictionary.has('A') && !this._destination) {
@@ -32337,6 +32356,7 @@ var PdfRubberStampAnnotation = /** @__PURE__ @class */ (function (_super) {
32337
32356
  }
32338
32357
  else if (bounds) {
32339
32358
  templateDictionary.update('Matrix', [1, 0, 0, 1, -bounds[0], -bounds[1]]);
32359
+ template._size = [bounds[2], bounds[3]];
32340
32360
  }
32341
32361
  template._exportStream(dictionary, this._crossReference);
32342
32362
  }
@@ -44749,6 +44769,34 @@ function _updateBounds(annotation, bounds) {
44749
44769
  }
44750
44770
  return rect;
44751
44771
  }
44772
+ /**
44773
+ * Decode text.
44774
+ *
44775
+ * @param {string} text Text to decode.
44776
+ * @param {boolean} isColorSpace Color space or not
44777
+ * @param {boolean} isPassword Password or not
44778
+ * @returns {string} Decoded text.
44779
+ */
44780
+ function _decodeText(text, isColorSpace, isPassword) {
44781
+ if (text && typeof text === 'string' && !isColorSpace && !isPassword) {
44782
+ if (text.startsWith('þÿ')) {
44783
+ text = text.substring(2);
44784
+ if (text.endsWith('ÿý')) {
44785
+ text = text.substring(0, text.length - 2);
44786
+ }
44787
+ var bytes = _stringToBytes(text);
44788
+ var result = '';
44789
+ for (var i = 0; i < bytes.length; i += 2) {
44790
+ var x = bytes[Number.parseInt(i.toString(), 10)] << 8;
44791
+ var y = bytes[Number.parseInt((i + 1).toString(), 10)];
44792
+ var codeUnit = x | y;
44793
+ result += String.fromCharCode(codeUnit);
44794
+ }
44795
+ text = result;
44796
+ }
44797
+ }
44798
+ return text;
44799
+ }
44752
44800
 
44753
44801
  /* eslint-disable */
44754
44802
  var nameCache = Object.create(null);
@@ -47093,6 +47141,7 @@ var _PdfParser = /** @__PURE__ @class */ (function () {
47093
47141
  if (array.length === 0 && _isName(entry, 'Indexed')) {
47094
47142
  this._isColorSpace = true;
47095
47143
  }
47144
+ entry = _decodeText(entry, this._isColorSpace, this._isPassword);
47096
47145
  array.push(entry);
47097
47146
  }
47098
47147
  if (this.first === endOfFile) {
@@ -47121,23 +47170,7 @@ var _PdfParser = /** @__PURE__ @class */ (function () {
47121
47170
  break;
47122
47171
  }
47123
47172
  var value = this.getObject(cipherTransform); // eslint-disable-line
47124
- if (value && typeof value === 'string' && !this._isColorSpace && !this._isPassword) {
47125
- if (value.startsWith('þÿ')) {
47126
- value = value.substring(2);
47127
- if (value.endsWith('ÿý')) {
47128
- value = value.substring(0, value.length - 2);
47129
- }
47130
- var bytes = _stringToBytes(value);
47131
- var result = '';
47132
- for (var i = 0; i < bytes.length; i += 2) {
47133
- var x = bytes[Number.parseInt(i.toString(), 10)] << 8;
47134
- var y = bytes[Number.parseInt((i + 1).toString(), 10)];
47135
- var codeUnit = x | y;
47136
- result += String.fromCharCode(codeUnit);
47137
- }
47138
- value = result;
47139
- }
47140
- }
47173
+ value = _decodeText(value, this._isColorSpace, this._isPassword);
47141
47174
  this._isPassword = false;
47142
47175
  dictionary.set(key, value);
47143
47176
  }
@@ -50078,7 +50111,7 @@ var _PdfCrossReference = /** @__PURE__ @class */ (function () {
50078
50111
  };
50079
50112
  _PdfCrossReference.prototype._copyTrailer = function (newXref) {
50080
50113
  newXref.set('Size', this._nextReferenceNumber);
50081
- this._document._isEncrypted ? newXref.set('Prev', this._prevXRefOffset) : newXref.set('Prev', this._prevStartXref);
50114
+ newXref.set('Prev', this._prevXRefOffset);
50082
50115
  var root = this._trailer.getRaw('Root'); // eslint-disable-line
50083
50116
  if (typeof root !== 'undefined' && root !== null) {
50084
50117
  newXref.set('Root', root);
@@ -54886,5 +54919,5 @@ var PdfBitmap = /** @__PURE__ @class */ (function (_super) {
54886
54919
  return PdfBitmap;
54887
54920
  }(PdfImage));
54888
54921
 
54889
- 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, 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 };
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 };
54890
54923
  //# sourceMappingURL=ej2-pdf.es5.js.map