@syncfusion/ej2-pdf 25.1.41 → 25.2.3

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.
@@ -11306,7 +11306,7 @@ class _XfdfDocument extends _ExportHelper {
11306
11306
  this._document = document;
11307
11307
  this._crossReference = document._crossReference;
11308
11308
  this._isAnnotationExport = false;
11309
- const xml = _bytesToString(data);
11309
+ const xml = _bytesToString(data, true);
11310
11310
  this._xmlDocument = (new DOMParser()).parseFromString(xml, 'text/xml');
11311
11311
  this._isAnnotationImport = true;
11312
11312
  this._readXmlData(this._xmlDocument.documentElement);
@@ -11315,7 +11315,7 @@ class _XfdfDocument extends _ExportHelper {
11315
11315
  this._document = document;
11316
11316
  this._crossReference = document._crossReference;
11317
11317
  this._isAnnotationExport = false;
11318
- this._xmlDocument = (new DOMParser()).parseFromString(_bytesToString(data), 'text/xml');
11318
+ this._xmlDocument = (new DOMParser()).parseFromString(_bytesToString(data, true), 'text/xml');
11319
11319
  this._readXmlData(this._xmlDocument.documentElement);
11320
11320
  }
11321
11321
  _readXmlData(root) {
@@ -12637,9 +12637,7 @@ class _JsonDocument extends _ExportHelper {
12637
12637
  if (typeof value === 'string' || (Array.isArray(value) && value.length === 1)) {
12638
12638
  value = this._getValidString(typeof value === 'string' ? value : value[0]);
12639
12639
  this._jsonData.push(this._doubleQuotes, this._colon, this._doubleQuotes);
12640
- for (let i = 0; i < value.length; i++) {
12641
- this._jsonData.push(value.charCodeAt(i));
12642
- }
12640
+ this._jsonData = _stringToBytes(value, true, false, this._jsonData);
12643
12641
  this._jsonData.push(this._doubleQuotes);
12644
12642
  }
12645
12643
  else {
@@ -12671,7 +12669,7 @@ class _JsonDocument extends _ExportHelper {
12671
12669
  const page = document.getPage(i);
12672
12670
  if (page && page.annotations.count > 0) {
12673
12671
  this._jsonData.push(i !== 0 && isAnnotationAdded ? this._comma : this._space, this._doubleQuotes);
12674
- const pageNumber = _convertStringToBytes(i.toString(), []);
12672
+ const pageNumber = _stringToBytes(i.toString(), true, false, []);
12675
12673
  pageNumber.forEach((entry) => {
12676
12674
  this._jsonData.push(entry);
12677
12675
  });
@@ -12687,7 +12685,7 @@ class _JsonDocument extends _ExportHelper {
12687
12685
  }
12688
12686
  count++;
12689
12687
  this._exportAnnotation(annotation, i);
12690
- this._jsonData = _convertStringToBytes(this._convertToJson(this._table), this._jsonData);
12688
+ this._jsonData = _stringToBytes(this._convertToJson(this._table), true, false, this._jsonData);
12691
12689
  this._table.clear();
12692
12690
  }
12693
12691
  }
@@ -13316,7 +13314,7 @@ class _JsonDocument extends _ExportHelper {
13316
13314
  _parseJson(document, data) {
13317
13315
  this._document = document;
13318
13316
  this._crossReference = document._crossReference;
13319
- let stringData = _bytesToString(data);
13317
+ let stringData = _bytesToString(data, true);
13320
13318
  if (stringData.startsWith('{') && !stringData.endsWith('}')) {
13321
13319
  while (stringData.length > 0 && !stringData.endsWith('}')) {
13322
13320
  stringData = stringData.substring(0, stringData.length - 1);
@@ -14064,7 +14062,7 @@ class _JsonDocument extends _ExportHelper {
14064
14062
  this._crossReference._cacheMap.set(value, stream);
14065
14063
  }
14066
14064
  else if (keys.indexOf('unicodeData') !== -1) {
14067
- value = _bytesToString(_hexStringToByteArray(element.unicodeData, true));
14065
+ value = _bytesToString(_hexStringToByteArray(element.unicodeData, false));
14068
14066
  }
14069
14067
  else {
14070
14068
  value = null;
@@ -39611,29 +39609,46 @@ function _stringToPdfString(value) {
39611
39609
  *
39612
39610
  * @private
39613
39611
  * @param {string} value string value.
39614
- * @param {boolean} isDirect Whether to return object or number[]. Default is false.
39615
- * @returns {Uint8Array | number[]} Byte array
39612
+ * @param {boolean} isDirect Whether to return a number[] or Uint8Array.
39613
+ * @param {boolean} isPassword Whether the string is a password.
39614
+ * @returns {number[] | Uint8Array} Byte array
39616
39615
  */
39617
- function _stringToBytes(value, isDirect = false) {
39618
- const bytes = [];
39619
- for (let i = 0; i < value.length; ++i) {
39620
- bytes.push(value.charCodeAt(i) & 0xff);
39616
+ function _stringToBytes(value, isDirect = false, isPassword = false, destination) {
39617
+ let bytes = [];
39618
+ if (destination) {
39619
+ bytes = destination;
39621
39620
  }
39622
- return isDirect ? bytes : new Uint8Array(bytes);
39623
- }
39624
- /**
39625
- * Convert string value to byte array
39626
- *
39627
- * @private
39628
- * @param {string} value string value.
39629
- * @param {number[]} destination byte array.
39630
- * @returns {number[]} Byte array
39631
- */
39632
- function _convertStringToBytes(value, destination) {
39633
- for (let i = 0; i < value.length; ++i) {
39634
- destination.push(value.charCodeAt(i) & 0xff);
39621
+ if (isPassword) {
39622
+ for (let i = 0; i < value.length; i++) {
39623
+ bytes.push(value.charCodeAt(i));
39624
+ }
39635
39625
  }
39636
- return destination;
39626
+ else {
39627
+ for (let i = 0; i < value.length; i++) {
39628
+ let charCode = value.charCodeAt(i);
39629
+ if (charCode < 0x80) {
39630
+ bytes.push(charCode);
39631
+ }
39632
+ else if (charCode < 0x800) {
39633
+ bytes.push((charCode >> 6) | 0xC0);
39634
+ bytes.push((charCode & 0x3F) | 0x80);
39635
+ }
39636
+ else if (charCode < 0xD800 || charCode >= 0xE000) {
39637
+ bytes.push((charCode >> 12) | 0xE0);
39638
+ bytes.push(((charCode >> 6) & 0x3F) | 0x80);
39639
+ bytes.push((charCode & 0x3F) | 0x80);
39640
+ }
39641
+ else {
39642
+ i++;
39643
+ charCode = 0x10000 + (((charCode & 0x3FF) << 10) | (value.charCodeAt(i) & 0x3FF));
39644
+ bytes.push((charCode >> 18) | 0xF0);
39645
+ bytes.push(((charCode >> 12) & 0x3F) | 0x80);
39646
+ bytes.push(((charCode >> 6) & 0x3F) | 0x80);
39647
+ bytes.push((charCode & 0x3F) | 0x80);
39648
+ }
39649
+ }
39650
+ }
39651
+ return isDirect ? bytes : new Uint8Array(bytes);
39637
39652
  }
39638
39653
  /**
39639
39654
  * Check equal or not.
@@ -39695,20 +39710,48 @@ function _areNotEqual(value, current) {
39695
39710
  * @param {Uint8Array} bytes Input data.
39696
39711
  * @returns {string} String value processed from input bytes.
39697
39712
  */
39698
- function _bytesToString(bytes) {
39713
+ function _bytesToString(bytes, isJson = false) {
39699
39714
  const length = bytes.length;
39700
39715
  const max = 8192;
39716
+ const stringBuffer = [];
39701
39717
  if (length < max) {
39702
- return String.fromCharCode.apply(null, bytes);
39718
+ return (isJson ? _decodeUTF8(bytes) : String.fromCharCode.apply(null, bytes));
39703
39719
  }
39704
- const stringBuffer = [];
39705
39720
  for (let i = 0; i < length; i += max) {
39706
39721
  const chunkEnd = Math.min(i + max, length);
39707
39722
  const chunk = bytes.subarray(i, chunkEnd);
39708
- stringBuffer.push(String.fromCharCode.apply(null, chunk));
39723
+ stringBuffer.push(isJson ? _decodeUTF8(chunk) : String.fromCharCode.apply(null, chunk));
39709
39724
  }
39710
39725
  return stringBuffer.join('');
39711
39726
  }
39727
+ /**
39728
+ * Decode unicode string.
39729
+ *
39730
+ * @private
39731
+ * @param {Uint8Array} bytes Input data.
39732
+ * @returns {string} String value processed from input bytes.
39733
+ */
39734
+ function _decodeUTF8(bytes) {
39735
+ let result = '';
39736
+ let i = 0;
39737
+ while (i < bytes.length) {
39738
+ const byte = bytes[i++];
39739
+ if (byte < 0x80) {
39740
+ result += String.fromCharCode(byte);
39741
+ }
39742
+ else if (byte < 0xE0) {
39743
+ result += String.fromCharCode(((byte & 0x1F) << 6) | (bytes[i++] & 0x3F));
39744
+ }
39745
+ else if (byte < 0xF0) {
39746
+ result += String.fromCharCode(((byte & 0x0F) << 12) | ((bytes[i++] & 0x3F) << 6) | (bytes[i++] & 0x3F));
39747
+ }
39748
+ else {
39749
+ const codePoint = ((byte & 0x07) << 18) | ((bytes[i++] & 0x3F) << 12) | ((bytes[i++] & 0x3F) << 6) | (bytes[i++] & 0x3F) - 0x10000;
39750
+ result += String.fromCharCode((codePoint >> 10) + 0xD800, (codePoint & 0x03FF) + 0xDC00);
39751
+ }
39752
+ }
39753
+ return result;
39754
+ }
39712
39755
  /**
39713
39756
  * Convert string to unicode array.
39714
39757
  *
@@ -43315,6 +43358,23 @@ function _getSize(input) {
43315
43358
  }
43316
43359
  return size;
43317
43360
  }
43361
+ /**
43362
+ * Convert the string to big endian bytes.
43363
+ *
43364
+ * @param {string} input string.
43365
+ * @returns {number[]} bytes.
43366
+ */
43367
+ function _stringToBigEndianBytes(input) {
43368
+ const bytes = [];
43369
+ for (let i = 0; i < input.length; i++) {
43370
+ const charCode = input.charCodeAt(Number.parseInt(i.toString(), 10));
43371
+ if (charCode <= 0xFFFF) {
43372
+ bytes.push((charCode >> 8) & 0xFF);
43373
+ bytes.push(charCode & 0xFF);
43374
+ }
43375
+ }
43376
+ return bytes;
43377
+ }
43318
43378
 
43319
43379
  /* eslint-disable */
43320
43380
  let nameCache = Object.create(null);
@@ -46077,12 +46137,12 @@ class _PdfEncryptor {
46077
46137
  if (!Number.isInteger(keyLength) || keyLength < 40 || keyLength % 8 !== 0) {
46078
46138
  throw new FormatError('invalid key length');
46079
46139
  }
46080
- const ownerPassword = _stringToBytes(dictionary.get('O')).subarray(0, 32);
46081
- const userPassword = _stringToBytes(dictionary.get('U')).subarray(0, 32);
46140
+ const ownerPassword = _stringToBytes(dictionary.get('O'), false, true).subarray(0, 32);
46141
+ const userPassword = _stringToBytes(dictionary.get('U'), false, true).subarray(0, 32);
46082
46142
  const flag = dictionary.get('P');
46083
46143
  const revision = dictionary.get('R');
46084
46144
  this._encryptMetaData = (algorithm === 4 || algorithm === 5) && dictionary.get('EncryptMetadata') !== false;
46085
- const fileIdBytes = _stringToBytes(id);
46145
+ const fileIdBytes = _stringToBytes(id, false, true);
46086
46146
  let passwordBytes;
46087
46147
  if (password) {
46088
46148
  if (revision === 6) {
@@ -46105,15 +46165,15 @@ class _PdfEncryptor {
46105
46165
  }
46106
46166
  }
46107
46167
  else {
46108
- const ownerValidationKey = _stringToBytes(dictionary.get('O'));
46168
+ const ownerValidationKey = _stringToBytes(dictionary.get('O'), false, true);
46109
46169
  const ownerValidationSalt = ownerValidationKey.subarray(32, 40);
46110
46170
  const ownerKeySalt = ownerValidationKey.subarray(40, 48);
46111
- const userValidationKey = _stringToBytes(dictionary.get('U'));
46171
+ const userValidationKey = _stringToBytes(dictionary.get('U'), false, true);
46112
46172
  const uBytes = userValidationKey.subarray(0, 48);
46113
46173
  const userValidationSalt = userValidationKey.subarray(32, 40);
46114
46174
  const userKeySalt = userValidationKey.subarray(40, 48);
46115
- const ownerEncryption = _stringToBytes(dictionary.get('OE'));
46116
- const userEncryption = _stringToBytes(dictionary.get('UE'));
46175
+ const ownerEncryption = _stringToBytes(dictionary.get('OE'), false, true);
46176
+ const userEncryption = _stringToBytes(dictionary.get('UE'), false, true);
46117
46177
  let algorithm;
46118
46178
  if (revision === 6) {
46119
46179
  algorithm = new _AdvancedEncryption();
@@ -47540,7 +47600,7 @@ class _CipherTransform {
47540
47600
  return new _PdfDecryptStream(stream, length, this._streamCipher);
47541
47601
  }
47542
47602
  decryptString(s) {
47543
- return _bytesToString(this._stringCipher._decryptBlock(_stringToBytes(s), true));
47603
+ return _bytesToString(this._stringCipher._decryptBlock(_stringToBytes(s, false, true), true));
47544
47604
  }
47545
47605
  encryptString(s) {
47546
47606
  if (this._stringCipher instanceof _AdvancedEncryptionBaseCipher) {
@@ -47556,13 +47616,13 @@ class _CipherTransform {
47556
47616
  iv[Number.parseInt(i.toString(), 10)] = Math.floor(256 * Math.random());
47557
47617
  }
47558
47618
  }
47559
- const data = this._stringCipher._encrypt(_stringToBytes(s), iv);
47619
+ const data = this._stringCipher._encrypt(_stringToBytes(s, false, true), iv);
47560
47620
  const buffer = new Uint8Array(16 + data.length);
47561
47621
  buffer.set(iv);
47562
47622
  buffer.set(data, 16);
47563
47623
  return _bytesToString(buffer);
47564
47624
  }
47565
- return _bytesToString(this._stringCipher._encrypt(_stringToBytes(s)));
47625
+ return _bytesToString(this._stringCipher._encrypt(_stringToBytes(s, false, true)));
47566
47626
  }
47567
47627
  }
47568
47628
 
@@ -48534,7 +48594,19 @@ class _PdfCrossReference {
48534
48594
  if (!isCrossReference && transform) {
48535
48595
  value = transform.encryptString(value);
48536
48596
  }
48537
- this._writeString(`(${this._escapeString(value)})`, buffer);
48597
+ let isUnicode = false;
48598
+ for (let i = 0; i < value.length; i++) {
48599
+ if (value.charCodeAt([i]) > 255) {
48600
+ isUnicode = true;
48601
+ break;
48602
+ }
48603
+ }
48604
+ if (isUnicode) {
48605
+ this._writeUnicodeString(value, buffer);
48606
+ }
48607
+ else {
48608
+ this._writeString(`(${this._escapeString(value)})`, buffer);
48609
+ }
48538
48610
  }
48539
48611
  else if (typeof value === 'number') {
48540
48612
  this._writeString(_numberToString(value), buffer);
@@ -48552,6 +48624,37 @@ class _PdfCrossReference {
48552
48624
  this._writeString('null', buffer);
48553
48625
  }
48554
48626
  }
48627
+ _writeUnicodeString(value, buffer) {
48628
+ const byteValues = _stringToBigEndianBytes(value);
48629
+ byteValues.unshift(254, 255);
48630
+ const data = [];
48631
+ for (let i = 0; i < byteValues.length; i++) {
48632
+ const byte = byteValues[Number.parseInt(i.toString(), 10)];
48633
+ switch (byte) {
48634
+ case 40:
48635
+ case 41:
48636
+ data.push(92);
48637
+ data.push(byte);
48638
+ break;
48639
+ case 13:
48640
+ data.push(92);
48641
+ data.push(114);
48642
+ break;
48643
+ case 92:
48644
+ data.push(92);
48645
+ data.push(byte);
48646
+ break;
48647
+ default:
48648
+ data.push(byte);
48649
+ break;
48650
+ }
48651
+ }
48652
+ buffer.push('('.charCodeAt(0) & 0xff);
48653
+ for (let i = 0; i < data.length; i++) {
48654
+ buffer.push(data[Number.parseInt(i.toString(), 10)] & 0xff);
48655
+ }
48656
+ buffer.push(')'.charCodeAt(0) & 0xff);
48657
+ }
48555
48658
  _writeString(value, buffer) {
48556
48659
  for (let i = 0; i < value.length; i++) {
48557
48660
  buffer.push(value.charCodeAt(i) & 0xff);
@@ -52917,5 +53020,5 @@ class PdfBitmap extends PdfImage {
52917
53020
  }
52918
53021
  }
52919
53022
 
52920
- 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 };
53023
+ 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, _areArrayEqual, _numberToString, _areNotEqual, _bytesToString, _decodeUTF8, _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, _stringToBigEndianBytes, 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 };
52921
53024
  //# sourceMappingURL=ej2-pdf.es2015.js.map