@syncfusion/ej2-pdf 25.1.37 → 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.
@@ -13196,7 +13196,19 @@ class _JsonDocument extends _ExportHelper {
13196
13196
  const dataTable = new Map(); // eslint-disable-line
13197
13197
  const streamTable = new Map(); // eslint-disable-line
13198
13198
  const streamDictionary = value.dictionary;
13199
- const data = value.getString(true);
13199
+ let data;
13200
+ let baseStream = value; // eslint-disable-line
13201
+ let isImageStream = false;
13202
+ if (streamDictionary.has('Subtype') && streamDictionary.get('Subtype').name === 'Image') {
13203
+ isImageStream = true;
13204
+ }
13205
+ if (isImageStream && baseStream.stream && baseStream.stream instanceof _PdfStream) {
13206
+ const stream = baseStream.stream;
13207
+ data = baseStream.getString(true, stream.getByteRange(stream.start, stream.end));
13208
+ }
13209
+ else {
13210
+ data = value.getString(true);
13211
+ }
13200
13212
  if (!streamDictionary.has('Length') && data && data !== '') {
13201
13213
  streamDictionary.update('Length', value.length);
13202
13214
  }
@@ -17794,8 +17806,7 @@ class PdfTextBoxField extends PdfField {
17794
17806
  }
17795
17807
  }
17796
17808
  parameter.bounds[2] = width;
17797
- format.alignment = PdfTextAlignment.center;
17798
- this._drawTextBox(g, parameter, text, font, format, multiline, scroll);
17809
+ this._drawTextBox(g, parameter, text, font, new PdfStringFormat(PdfTextAlignment.center), multiline, scroll);
17799
17810
  parameter.bounds[0] = parameter.bounds[0] + width;
17800
17811
  if (parameter.borderWidth) {
17801
17812
  g.drawLine(parameter.borderPen, parameter.bounds[0], parameter.bounds[1], parameter.bounds[0], parameter.bounds[1] + parameter.bounds[3]);
@@ -26382,8 +26393,26 @@ class PdfSquareAnnotation extends PdfComment {
26382
26393
  }
26383
26394
  }
26384
26395
  if (isFlatten && this._appearanceTemplate) {
26385
- const isNormalMatrix = this._validateTemplateMatrix(this._appearanceTemplate._content.dictionary);
26386
- this._flattenAnnotationTemplate(this._appearanceTemplate, isNormalMatrix);
26396
+ const appearanceDictionary = this._appearanceTemplate._content.dictionary;
26397
+ const isValid = appearanceDictionary && appearanceDictionary.has('BBox') && !appearanceDictionary.has('CropBox') && !appearanceDictionary.has('MediaBox');
26398
+ if (isValid && this.measure) {
26399
+ const graphics = this._page.graphics;
26400
+ const state = graphics.save();
26401
+ if (typeof this.opacity !== 'undefined' && this._opacity < 1) {
26402
+ graphics.setTransparency(this._opacity);
26403
+ }
26404
+ const point = this.bounds;
26405
+ const box = this._appearanceTemplate._content.dictionary.getArray('BBox');
26406
+ point.x -= box[0];
26407
+ point.y += box[1];
26408
+ graphics.drawTemplate(this._appearanceTemplate, point);
26409
+ graphics.restore(state);
26410
+ this._removeAnnotationFromPage(this._page, this);
26411
+ }
26412
+ else {
26413
+ const isNormalMatrix = this._validateTemplateMatrix(this._appearanceTemplate._content.dictionary);
26414
+ this._flattenAnnotationTemplate(this._appearanceTemplate, isNormalMatrix);
26415
+ }
26387
26416
  }
26388
26417
  if (!isFlatten && this._setAppearance && !this.measure) {
26389
26418
  let appearance;
@@ -26518,16 +26547,16 @@ class PdfSquareAnnotation extends PdfComment {
26518
26547
  const converter = new _PdfUnitConvertor();
26519
26548
  let value;
26520
26549
  if (this.bounds.width === this.bounds.height) {
26521
- value = this._getEqualPdfGraphicsUnit(this._unit, this._unitString);
26550
+ value = this._getEqualPdfGraphicsUnit(this.unit, this._unitString);
26522
26551
  this._unitString = value.unitString;
26523
26552
  const width = converter._convertUnits(this.bounds.width, _PdfGraphicsUnit.point, value.graphicsUnit);
26524
26553
  area = width * width;
26525
26554
  }
26526
26555
  else {
26527
- value = this._getEqualPdfGraphicsUnit(this._unit, this._unitString);
26556
+ value = this._getEqualPdfGraphicsUnit(this.unit, this._unitString);
26528
26557
  this._unitString = value.unitString;
26529
26558
  const width = converter._convertUnits(this.bounds.width, _PdfGraphicsUnit.point, value.graphicsUnit);
26530
- value = this._getEqualPdfGraphicsUnit(this._unit, this._unitString);
26559
+ value = this._getEqualPdfGraphicsUnit(this.unit, this._unitString);
26531
26560
  this._unitString = value.unitString;
26532
26561
  const height = converter._convertUnits(this.bounds.height, _PdfGraphicsUnit.point, value.graphicsUnit);
26533
26562
  area = width * height;
@@ -29668,33 +29697,53 @@ class PdfDocumentLinkAnnotation extends PdfAnnotation {
29668
29697
  }
29669
29698
  if (holder) {
29670
29699
  const index = _getPageIndex(this._crossReference._document, this._crossReference._fetch(holder));
29671
- const page = this._crossReference._document.getPage(index);
29672
- if (array[1] instanceof _PdfName) {
29673
- const mode = array[1];
29674
- if (mode) {
29675
- if (mode.name === 'XYZ') {
29676
- const left = array[2];
29677
- const top = array[3];
29678
- const zoom = array[4];
29679
- const topValue = (typeof top !== 'undefined' && top !== null) ? (page.size[1] - top) : 0;
29680
- const leftValue = (typeof left !== 'undefined' && left !== null) ? left : 0;
29681
- this._destination = new PdfDestination(page, [leftValue, topValue]);
29682
- if (typeof zoom !== 'undefined' && zoom !== null) {
29683
- this._destination.zoom = zoom;
29684
- }
29685
- if ((typeof left === 'undefined' && left === null) || (typeof top === 'undefined' && top === null)
29686
- || (typeof zoom === 'undefined' && zoom === null)) {
29687
- 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
+ }
29688
29719
  }
29689
- }
29690
- else {
29691
- if (page && mode.name === 'Fit') {
29720
+ else if (mode.name === 'Fit') {
29692
29721
  this._destination = new PdfDestination(page);
29693
29722
  this._destination.mode = PdfDestinationMode.fitToPage;
29694
29723
  }
29695
29724
  }
29696
29725
  }
29697
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
+ }
29698
29747
  }
29699
29748
  }
29700
29749
  else if (this._dictionary.has('A') && !this._destination) {
@@ -31157,6 +31206,7 @@ class PdfRubberStampAnnotation extends PdfComment {
31157
31206
  }
31158
31207
  else if (bounds) {
31159
31208
  templateDictionary.update('Matrix', [1, 0, 0, 1, -bounds[0], -bounds[1]]);
31209
+ template._size = [bounds[2], bounds[3]];
31160
31210
  }
31161
31211
  template._exportStream(dictionary, this._crossReference);
31162
31212
  }
@@ -43175,6 +43225,34 @@ function _updateBounds(annotation, bounds) {
43175
43225
  }
43176
43226
  return rect;
43177
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
+ }
43178
43256
 
43179
43257
  /* eslint-disable */
43180
43258
  let nameCache = Object.create(null);
@@ -43510,25 +43588,15 @@ class _PdfBaseStream {
43510
43588
  moveStart() {
43511
43589
  return null;
43512
43590
  }
43513
- getString(isHex = false) {
43514
- const bytes = this.getBytes();
43515
- if (typeof bytes === 'undefined' || bytes === null || typeof bytes.length === 'undefined') {
43516
- throw new Error('Invalid argument for bytesToString');
43591
+ getString(isHex = false, bytes) {
43592
+ if (typeof bytes === 'undefined' || bytes === null) {
43593
+ bytes = this.getBytes();
43517
43594
  }
43518
43595
  if (isHex) {
43519
43596
  return _byteArrayToHexString(bytes);
43520
43597
  }
43521
43598
  else {
43522
- const len = bytes.length;
43523
- const max = 8192;
43524
- if (len < max) {
43525
- return String.fromCharCode.apply(null, bytes);
43526
- }
43527
- const stringBuffer = [];
43528
- for (let i = 0; i < len; i += max) {
43529
- stringBuffer.push(String.fromCharCode.apply(null, bytes.subarray(i, Math.min(i + max, len))));
43530
- }
43531
- return stringBuffer.join('');
43599
+ return _bytesToString(bytes);
43532
43600
  }
43533
43601
  }
43534
43602
  skip(n) {
@@ -45358,10 +45426,11 @@ class _PdfParser {
45358
45426
  case '[':
45359
45427
  const array = []; // eslint-disable-line
45360
45428
  while (!_isCommand(this.first, ']') && this.first !== endOfFile) {
45361
- const entry = this.getObject(cipherTransform); // eslint-disable-line
45429
+ let entry = this.getObject(cipherTransform); // eslint-disable-line
45362
45430
  if (array.length === 0 && _isName(entry, 'Indexed')) {
45363
45431
  this._isColorSpace = true;
45364
45432
  }
45433
+ entry = _decodeText(entry, this._isColorSpace, this._isPassword);
45365
45434
  array.push(entry);
45366
45435
  }
45367
45436
  if (this.first === endOfFile) {
@@ -45390,23 +45459,7 @@ class _PdfParser {
45390
45459
  break;
45391
45460
  }
45392
45461
  let value = this.getObject(cipherTransform); // eslint-disable-line
45393
- if (value && typeof value === 'string' && !this._isColorSpace && !this._isPassword) {
45394
- if (value.startsWith('þÿ')) {
45395
- value = value.substring(2);
45396
- if (value.endsWith('ÿý')) {
45397
- value = value.substring(0, value.length - 2);
45398
- }
45399
- const bytes = _stringToBytes(value);
45400
- let result = '';
45401
- for (let i = 0; i < bytes.length; i += 2) {
45402
- const x = bytes[Number.parseInt(i.toString(), 10)] << 8;
45403
- const y = bytes[Number.parseInt((i + 1).toString(), 10)];
45404
- const codeUnit = x | y;
45405
- result += String.fromCharCode(codeUnit);
45406
- }
45407
- value = result;
45408
- }
45409
- }
45462
+ value = _decodeText(value, this._isColorSpace, this._isPassword);
45410
45463
  this._isPassword = false;
45411
45464
  dictionary.set(key, value);
45412
45465
  }
@@ -47464,6 +47517,9 @@ class _PdfCrossReference {
47464
47517
  _setStartXRef(startXRef) {
47465
47518
  this._startXRefQueue = [startXRef];
47466
47519
  this._prevStartXref = startXRef;
47520
+ if (typeof this._prevXRefOffset === 'undefined' || this._prevXRefOffset === null) {
47521
+ this._prevXRefOffset = startXRef;
47522
+ }
47467
47523
  }
47468
47524
  _parse(recoveryMode) {
47469
47525
  let trailerDictionary;
@@ -48265,7 +48321,7 @@ class _PdfCrossReference {
48265
48321
  }
48266
48322
  _copyTrailer(newXref) {
48267
48323
  newXref.set('Size', this._nextReferenceNumber);
48268
- newXref.set('Prev', this._prevStartXref);
48324
+ newXref.set('Prev', this._prevXRefOffset);
48269
48325
  const root = this._trailer.getRaw('Root'); // eslint-disable-line
48270
48326
  if (typeof root !== 'undefined' && root !== null) {
48271
48327
  newXref.set('Root', root);
@@ -51196,7 +51252,7 @@ class PdfDocument {
51196
51252
  pageDictionary.update('Parent', sectionReference);
51197
51253
  sectionDictionary.update('Kids', [pageReference]);
51198
51254
  if (this.pageCount === 0) {
51199
- let parentReference = this._catalog._catalogDictionary._get('Pages');
51255
+ const parentReference = this._catalog._catalogDictionary._get('Pages');
51200
51256
  if (parentReference && this._catalog._topPagesDictionary) {
51201
51257
  this._catalog._topPagesDictionary.update('Kids', [sectionReference]);
51202
51258
  sectionDictionary.update('Parent', parentReference);
@@ -52794,5 +52850,5 @@ class PdfBitmap extends PdfImage {
52794
52850
  }
52795
52851
  }
52796
52852
 
52797
- 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 };
52798
52854
  //# sourceMappingURL=ej2-pdf.es2015.js.map