@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.
@@ -17806,8 +17806,7 @@ class PdfTextBoxField extends PdfField {
17806
17806
  }
17807
17807
  }
17808
17808
  parameter.bounds[2] = width;
17809
- format.alignment = PdfTextAlignment.center;
17810
- this._drawTextBox(g, parameter, text, font, format, multiline, scroll);
17809
+ this._drawTextBox(g, parameter, text, font, new PdfStringFormat(PdfTextAlignment.center), multiline, scroll);
17811
17810
  parameter.bounds[0] = parameter.bounds[0] + width;
17812
17811
  if (parameter.borderWidth) {
17813
17812
  g.drawLine(parameter.borderPen, parameter.bounds[0], parameter.bounds[1], parameter.bounds[0], parameter.bounds[1] + parameter.bounds[3]);
@@ -29698,33 +29697,53 @@ class PdfDocumentLinkAnnotation extends PdfAnnotation {
29698
29697
  }
29699
29698
  if (holder) {
29700
29699
  const index = _getPageIndex(this._crossReference._document, this._crossReference._fetch(holder));
29701
- const page = this._crossReference._document.getPage(index);
29702
- if (array[1] instanceof _PdfName) {
29703
- const mode = array[1];
29704
- if (mode) {
29705
- if (mode.name === 'XYZ') {
29706
- const left = array[2];
29707
- const top = array[3];
29708
- const zoom = array[4];
29709
- const topValue = (typeof top !== 'undefined' && top !== null) ? (page.size[1] - top) : 0;
29710
- const leftValue = (typeof left !== 'undefined' && left !== null) ? left : 0;
29711
- this._destination = new PdfDestination(page, [leftValue, topValue]);
29712
- if (typeof zoom !== 'undefined' && zoom !== null) {
29713
- this._destination.zoom = zoom;
29714
- }
29715
- if ((typeof left === 'undefined' && left === null) || (typeof top === 'undefined' && top === null)
29716
- || (typeof zoom === 'undefined' && zoom === null)) {
29717
- this._destination._setValidation(false);
29700
+ if (index >= 0) {
29701
+ const page = this._crossReference._document.getPage(index);
29702
+ if (page && array[1] instanceof _PdfName) {
29703
+ const mode = array[1];
29704
+ if (mode) {
29705
+ if (mode.name === 'XYZ') {
29706
+ const left = array[2];
29707
+ const top = array[3];
29708
+ const zoom = array[4];
29709
+ const topValue = (typeof top !== 'undefined' && top !== null) ? (page.size[1] - top) : 0;
29710
+ const leftValue = (typeof left !== 'undefined' && left !== null) ? left : 0;
29711
+ this._destination = new PdfDestination(page, [leftValue, topValue]);
29712
+ if (typeof zoom !== 'undefined' && zoom !== null) {
29713
+ this._destination.zoom = zoom;
29714
+ }
29715
+ if ((typeof left === 'undefined' && left === null) || (typeof top === 'undefined' && top === null)
29716
+ || (typeof zoom === 'undefined' && zoom === null)) {
29717
+ this._destination._setValidation(false);
29718
+ }
29718
29719
  }
29719
- }
29720
- else {
29721
- if (page && mode.name === 'Fit') {
29720
+ else if (mode.name === 'Fit') {
29722
29721
  this._destination = new PdfDestination(page);
29723
29722
  this._destination.mode = PdfDestinationMode.fitToPage;
29724
29723
  }
29725
29724
  }
29726
29725
  }
29727
29726
  }
29727
+ else {
29728
+ this._destination = new PdfDestination();
29729
+ const zoom = array[4];
29730
+ const mode = array[1];
29731
+ if (typeof zoom !== 'undefined' && zoom !== null) {
29732
+ this._destination.zoom = zoom;
29733
+ }
29734
+ if (mode.name === 'Fit') {
29735
+ this._destination.mode = PdfDestinationMode.fitToPage;
29736
+ }
29737
+ else if (mode.name === 'XYZ') {
29738
+ const left = array[2];
29739
+ const topValue = array[3];
29740
+ if ((typeof left === 'undefined' && left === null) || (typeof topValue === 'undefined' && topValue === null)
29741
+ || (typeof zoom === 'undefined' && zoom === null)) {
29742
+ this._destination._setValidation(false);
29743
+ }
29744
+ }
29745
+ this._destination._index = index;
29746
+ }
29728
29747
  }
29729
29748
  }
29730
29749
  else if (this._dictionary.has('A') && !this._destination) {
@@ -31187,6 +31206,7 @@ class PdfRubberStampAnnotation extends PdfComment {
31187
31206
  }
31188
31207
  else if (bounds) {
31189
31208
  templateDictionary.update('Matrix', [1, 0, 0, 1, -bounds[0], -bounds[1]]);
31209
+ template._size = [bounds[2], bounds[3]];
31190
31210
  }
31191
31211
  template._exportStream(dictionary, this._crossReference);
31192
31212
  }
@@ -43205,6 +43225,34 @@ function _updateBounds(annotation, bounds) {
43205
43225
  }
43206
43226
  return rect;
43207
43227
  }
43228
+ /**
43229
+ * Decode text.
43230
+ *
43231
+ * @param {string} text Text to decode.
43232
+ * @param {boolean} isColorSpace Color space or not
43233
+ * @param {boolean} isPassword Password or not
43234
+ * @returns {string} Decoded text.
43235
+ */
43236
+ function _decodeText(text, isColorSpace, isPassword) {
43237
+ if (text && typeof text === 'string' && !isColorSpace && !isPassword) {
43238
+ if (text.startsWith('þÿ')) {
43239
+ text = text.substring(2);
43240
+ if (text.endsWith('ÿý')) {
43241
+ text = text.substring(0, text.length - 2);
43242
+ }
43243
+ const bytes = _stringToBytes(text);
43244
+ let result = '';
43245
+ for (let i = 0; i < bytes.length; i += 2) {
43246
+ const x = bytes[Number.parseInt(i.toString(), 10)] << 8;
43247
+ const y = bytes[Number.parseInt((i + 1).toString(), 10)];
43248
+ const codeUnit = x | y;
43249
+ result += String.fromCharCode(codeUnit);
43250
+ }
43251
+ text = result;
43252
+ }
43253
+ }
43254
+ return text;
43255
+ }
43208
43256
 
43209
43257
  /* eslint-disable */
43210
43258
  let nameCache = Object.create(null);
@@ -45378,10 +45426,11 @@ class _PdfParser {
45378
45426
  case '[':
45379
45427
  const array = []; // eslint-disable-line
45380
45428
  while (!_isCommand(this.first, ']') && this.first !== endOfFile) {
45381
- const entry = this.getObject(cipherTransform); // eslint-disable-line
45429
+ let entry = this.getObject(cipherTransform); // eslint-disable-line
45382
45430
  if (array.length === 0 && _isName(entry, 'Indexed')) {
45383
45431
  this._isColorSpace = true;
45384
45432
  }
45433
+ entry = _decodeText(entry, this._isColorSpace, this._isPassword);
45385
45434
  array.push(entry);
45386
45435
  }
45387
45436
  if (this.first === endOfFile) {
@@ -45410,23 +45459,7 @@ class _PdfParser {
45410
45459
  break;
45411
45460
  }
45412
45461
  let value = this.getObject(cipherTransform); // eslint-disable-line
45413
- if (value && typeof value === 'string' && !this._isColorSpace && !this._isPassword) {
45414
- if (value.startsWith('þÿ')) {
45415
- value = value.substring(2);
45416
- if (value.endsWith('ÿý')) {
45417
- value = value.substring(0, value.length - 2);
45418
- }
45419
- const bytes = _stringToBytes(value);
45420
- let result = '';
45421
- for (let i = 0; i < bytes.length; i += 2) {
45422
- const x = bytes[Number.parseInt(i.toString(), 10)] << 8;
45423
- const y = bytes[Number.parseInt((i + 1).toString(), 10)];
45424
- const codeUnit = x | y;
45425
- result += String.fromCharCode(codeUnit);
45426
- }
45427
- value = result;
45428
- }
45429
- }
45462
+ value = _decodeText(value, this._isColorSpace, this._isPassword);
45430
45463
  this._isPassword = false;
45431
45464
  dictionary.set(key, value);
45432
45465
  }
@@ -48288,7 +48321,7 @@ class _PdfCrossReference {
48288
48321
  }
48289
48322
  _copyTrailer(newXref) {
48290
48323
  newXref.set('Size', this._nextReferenceNumber);
48291
- this._document._isEncrypted ? newXref.set('Prev', this._prevXRefOffset) : newXref.set('Prev', this._prevStartXref);
48324
+ newXref.set('Prev', this._prevXRefOffset);
48292
48325
  const root = this._trailer.getRaw('Root'); // eslint-disable-line
48293
48326
  if (typeof root !== 'undefined' && root !== null) {
48294
48327
  newXref.set('Root', root);
@@ -52817,5 +52850,5 @@ class PdfBitmap extends PdfImage {
52817
52850
  }
52818
52851
  }
52819
52852
 
52820
- 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 };
52853
+ 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 };
52821
52854
  //# sourceMappingURL=ej2-pdf.es2015.js.map