@syncfusion/ej2-pdf 25.1.39 → 25.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/ej2-pdf.umd.min.js +2 -2
- package/dist/ej2-pdf.umd.min.js.map +1 -1
- package/dist/es6/ej2-pdf.es2015.js +90 -23
- package/dist/es6/ej2-pdf.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf.es5.js +91 -23
- package/dist/es6/ej2-pdf.es5.js.map +1 -1
- package/dist/global/ej2-pdf.min.js +2 -2
- package/dist/global/ej2-pdf.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +5 -5
- package/src/pdf/core/form/form.js +0 -1
- package/src/pdf/core/import-export/json-document.d.ts +1 -0
- package/src/pdf/core/import-export/json-document.js +27 -1
- package/src/pdf/core/pdf-catalog.js +2 -0
- package/src/pdf/core/pdf-cross-reference.js +10 -8
- package/src/pdf/core/pdf-document.js +14 -12
- package/src/pdf/core/pdf-page.js +4 -1
- package/src/pdf/core/utils.d.ts +7 -0
- package/src/pdf/core/utils.js +34 -0
|
@@ -12591,6 +12591,7 @@ class _JsonDocument extends _ExportHelper {
|
|
|
12591
12591
|
constructor(fileName) {
|
|
12592
12592
|
super();
|
|
12593
12593
|
this._isImport = false;
|
|
12594
|
+
this._isColorSpace = false;
|
|
12594
12595
|
if (fileName !== null && typeof fileName !== 'undefined') {
|
|
12595
12596
|
this._fileName = fileName;
|
|
12596
12597
|
}
|
|
@@ -13175,11 +13176,25 @@ class _JsonDocument extends _ExportHelper {
|
|
|
13175
13176
|
}
|
|
13176
13177
|
else if (Array.isArray(value)) {
|
|
13177
13178
|
const list = [];
|
|
13179
|
+
if (key === 'ColorSpace') {
|
|
13180
|
+
value.forEach(element => {
|
|
13181
|
+
if (typeof element === 'string') {
|
|
13182
|
+
this._isColorSpace = true;
|
|
13183
|
+
}
|
|
13184
|
+
});
|
|
13185
|
+
}
|
|
13178
13186
|
this._writeArray(list, value, dictionary);
|
|
13187
|
+
this._isColorSpace = false;
|
|
13179
13188
|
this._writeTable('array', this._convertToJsonArray(list), table, key, array);
|
|
13180
13189
|
}
|
|
13181
13190
|
else if (typeof value === 'string') {
|
|
13182
|
-
this.
|
|
13191
|
+
if (this._isColorSpace) {
|
|
13192
|
+
const bytes = _stringToBytes(value);
|
|
13193
|
+
this._writeTable('unicodeData', _byteArrayToHexString(bytes), table, key, array);
|
|
13194
|
+
}
|
|
13195
|
+
else {
|
|
13196
|
+
this._writeTable('string', value, table, key, array);
|
|
13197
|
+
}
|
|
13183
13198
|
}
|
|
13184
13199
|
else if (typeof value === 'number') {
|
|
13185
13200
|
this._writeTable(Number.isInteger(value) ? 'int' : 'fixed', value.toString(), table, key, array);
|
|
@@ -13206,6 +13221,13 @@ class _JsonDocument extends _ExportHelper {
|
|
|
13206
13221
|
const stream = baseStream.stream;
|
|
13207
13222
|
data = baseStream.getString(true, stream.getByteRange(stream.start, stream.end));
|
|
13208
13223
|
}
|
|
13224
|
+
else if (baseStream.stream && baseStream.stream.stream) {
|
|
13225
|
+
const flateStream = baseStream.stream; // eslint-disable-line
|
|
13226
|
+
if (flateStream.stream && flateStream.stream instanceof _PdfStream) {
|
|
13227
|
+
const stream = flateStream.stream;
|
|
13228
|
+
data = flateStream.getString(true, stream.getByteRange(stream.start, stream.end));
|
|
13229
|
+
}
|
|
13230
|
+
}
|
|
13209
13231
|
else {
|
|
13210
13232
|
data = value.getString(true);
|
|
13211
13233
|
}
|
|
@@ -14041,6 +14063,9 @@ class _JsonDocument extends _ExportHelper {
|
|
|
14041
14063
|
stream.dictionary.objId = value.objectNumber + ' ' + value.generationNumber;
|
|
14042
14064
|
this._crossReference._cacheMap.set(value, stream);
|
|
14043
14065
|
}
|
|
14066
|
+
else if (keys.indexOf('unicodeData') !== -1) {
|
|
14067
|
+
value = _bytesToString(_hexStringToByteArray(element.unicodeData, true));
|
|
14068
|
+
}
|
|
14044
14069
|
else {
|
|
14045
14070
|
value = null;
|
|
14046
14071
|
}
|
|
@@ -36488,7 +36513,10 @@ class PdfPage {
|
|
|
36488
36513
|
if (this._pageDictionary.has('Annots')) {
|
|
36489
36514
|
const annots = this._getProperty('Annots');
|
|
36490
36515
|
if (annots && Array.isArray(annots)) {
|
|
36491
|
-
|
|
36516
|
+
let widgets;
|
|
36517
|
+
if (this._crossReference._document._catalog._catalogDictionary.has('AcroForm')) {
|
|
36518
|
+
widgets = this._crossReference._document.form._parseWidgetReferences();
|
|
36519
|
+
}
|
|
36492
36520
|
if (widgets && widgets.length > 0) {
|
|
36493
36521
|
const validAnnotations = [];
|
|
36494
36522
|
annots.forEach((entry) => {
|
|
@@ -43253,6 +43281,40 @@ function _decodeText(text, isColorSpace, isPassword) {
|
|
|
43253
43281
|
}
|
|
43254
43282
|
return text;
|
|
43255
43283
|
}
|
|
43284
|
+
/**
|
|
43285
|
+
* Number of bytes required to save the number.
|
|
43286
|
+
*
|
|
43287
|
+
* @param {number} input number.
|
|
43288
|
+
* @returns {number} number of bytes.
|
|
43289
|
+
*/
|
|
43290
|
+
function _getSize(input) {
|
|
43291
|
+
let size = 0;
|
|
43292
|
+
const uintMaxValue = 0xFFFFFFFF;
|
|
43293
|
+
const ushortMaxValue = 0xFFFF;
|
|
43294
|
+
const byteMaxValue = 0xFF;
|
|
43295
|
+
if (input <= uintMaxValue) {
|
|
43296
|
+
if (input <= ushortMaxValue) {
|
|
43297
|
+
if (input <= byteMaxValue) {
|
|
43298
|
+
size = 1;
|
|
43299
|
+
}
|
|
43300
|
+
else {
|
|
43301
|
+
size = 2;
|
|
43302
|
+
}
|
|
43303
|
+
}
|
|
43304
|
+
else {
|
|
43305
|
+
if (input <= (ushortMaxValue | (ushortMaxValue << 8))) {
|
|
43306
|
+
size = 3;
|
|
43307
|
+
}
|
|
43308
|
+
else {
|
|
43309
|
+
size = 4;
|
|
43310
|
+
}
|
|
43311
|
+
}
|
|
43312
|
+
}
|
|
43313
|
+
else {
|
|
43314
|
+
size = 8;
|
|
43315
|
+
}
|
|
43316
|
+
return size;
|
|
43317
|
+
}
|
|
43256
43318
|
|
|
43257
43319
|
/* eslint-disable */
|
|
43258
43320
|
let nameCache = Object.create(null);
|
|
@@ -44634,6 +44696,8 @@ class _PdfCatalog {
|
|
|
44634
44696
|
this._crossReference._cacheMap.set(ref, form);
|
|
44635
44697
|
this._catalogDictionary.set('AcroForm', ref);
|
|
44636
44698
|
this._catalogDictionary._updated = true;
|
|
44699
|
+
this._crossReference._allowCatalog = true;
|
|
44700
|
+
form._updated = true;
|
|
44637
44701
|
return form;
|
|
44638
44702
|
}
|
|
44639
44703
|
getPageDictionary(pageIndex) {
|
|
@@ -48236,39 +48300,40 @@ class _PdfCrossReference {
|
|
|
48236
48300
|
}
|
|
48237
48301
|
this._writeObject(archiveStream, buffer, archiveRef, cipher);
|
|
48238
48302
|
}
|
|
48303
|
+
const formatValue = Math.max(_getSize(this._stream.bytes.length + buffer.length), _getSize(this._nextReferenceNumber));
|
|
48239
48304
|
const newRef = this._getNextReference();
|
|
48240
48305
|
const newStartXref = currentLength + buffer.length;
|
|
48241
48306
|
const newXref = new _PdfDictionary(this);
|
|
48242
48307
|
newXref.set('Type', _PdfName.get('XRef'));
|
|
48243
48308
|
newXref.set('Index', indexes);
|
|
48244
|
-
newXref.set('W', [1,
|
|
48309
|
+
newXref.set('W', [1, formatValue, 1]);
|
|
48245
48310
|
this._copyTrailer(newXref);
|
|
48246
48311
|
if (this._ids && this._ids.length > 0) {
|
|
48247
48312
|
newXref.update('ID', [this._ids[0], this._computeMessageDigest(newStartXref)]);
|
|
48248
48313
|
}
|
|
48249
48314
|
const newXrefData = [];
|
|
48250
48315
|
this._writeLong(0, 1, newXrefData);
|
|
48251
|
-
this._writeLong(1,
|
|
48316
|
+
this._writeLong(1, formatValue, newXrefData);
|
|
48252
48317
|
this._writeLong(-1, 1, newXrefData);
|
|
48253
48318
|
if (uncompressedCount > 0) {
|
|
48254
48319
|
for (let index = 0; index < uncompressedCount; index++) {
|
|
48255
48320
|
this._writeLong(1, 1, newXrefData);
|
|
48256
|
-
this._writeLong(uncompressedOffsets[index],
|
|
48321
|
+
this._writeLong(uncompressedOffsets[index], formatValue, newXrefData); // eslint-disable-line
|
|
48257
48322
|
this._writeLong(0, 1, newXrefData);
|
|
48258
48323
|
}
|
|
48259
48324
|
}
|
|
48260
48325
|
if (updatedCount > 0) {
|
|
48261
48326
|
for (let index = 0; index < updatedCount; index++) {
|
|
48262
48327
|
this._writeLong(2, 1, newXrefData);
|
|
48263
|
-
this._writeLong(archiveRef.objectNumber,
|
|
48328
|
+
this._writeLong(archiveRef.objectNumber, formatValue, newXrefData);
|
|
48264
48329
|
this._writeLong(index, 1, newXrefData);
|
|
48265
48330
|
}
|
|
48266
48331
|
this._writeLong(1, 1, newXrefData);
|
|
48267
|
-
this._writeLong(archiveOffset,
|
|
48332
|
+
this._writeLong(archiveOffset, formatValue, newXrefData);
|
|
48268
48333
|
this._writeLong(0, 1, newXrefData);
|
|
48269
48334
|
}
|
|
48270
48335
|
this._writeLong(1, 1, newXrefData);
|
|
48271
|
-
this._writeLong(newStartXref,
|
|
48336
|
+
this._writeLong(newStartXref, formatValue, newXrefData);
|
|
48272
48337
|
this._writeLong(0, 1, newXrefData);
|
|
48273
48338
|
newXref.set('Length', newXrefData.length);
|
|
48274
48339
|
const newXrefStream = new _PdfStream(newXrefData, newXref, 0, newXrefData.length);
|
|
@@ -48320,7 +48385,8 @@ class _PdfCrossReference {
|
|
|
48320
48385
|
return array;
|
|
48321
48386
|
}
|
|
48322
48387
|
_copyTrailer(newXref) {
|
|
48323
|
-
|
|
48388
|
+
const reference = this._getNextReference();
|
|
48389
|
+
newXref.set('Size', reference.objectNumber);
|
|
48324
48390
|
newXref.set('Prev', this._prevXRefOffset);
|
|
48325
48391
|
const root = this._trailer.getRaw('Root'); // eslint-disable-line
|
|
48326
48392
|
if (typeof root !== 'undefined' && root !== null) {
|
|
@@ -48757,7 +48823,6 @@ class PdfForm {
|
|
|
48757
48823
|
this._dictionary.update('Fields', this._fields);
|
|
48758
48824
|
this._parsedFields.set(this._fields.length - 1, field);
|
|
48759
48825
|
field._form = this;
|
|
48760
|
-
this._crossReference._allowCatalog = true;
|
|
48761
48826
|
this._crossReference._root._updated = true;
|
|
48762
48827
|
if (field._kidsCount > 0) {
|
|
48763
48828
|
for (let i = 0; i < field._kidsCount; i++) {
|
|
@@ -51919,19 +51984,21 @@ class PdfDocument {
|
|
|
51919
51984
|
this._doPostProcessOnAnnotations(isFlatten);
|
|
51920
51985
|
}
|
|
51921
51986
|
_doPostProcessOnFormFields(isFlatten = false) {
|
|
51922
|
-
this.
|
|
51923
|
-
|
|
51924
|
-
|
|
51925
|
-
|
|
51926
|
-
|
|
51927
|
-
|
|
51928
|
-
|
|
51929
|
-
|
|
51930
|
-
|
|
51931
|
-
|
|
51932
|
-
|
|
51987
|
+
if (this._catalog._catalogDictionary.has('AcroForm')) {
|
|
51988
|
+
this.form._doPostProcess(isFlatten);
|
|
51989
|
+
if (isFlatten) {
|
|
51990
|
+
const formObject = this._catalog._catalogDictionary.getRaw('AcroForm');
|
|
51991
|
+
const dictionary = new _PdfDictionary(this._crossReference);
|
|
51992
|
+
dictionary._updated = true;
|
|
51993
|
+
if (formObject instanceof _PdfReference) {
|
|
51994
|
+
this._crossReference._cacheMap.set(formObject, dictionary);
|
|
51995
|
+
}
|
|
51996
|
+
else {
|
|
51997
|
+
this.form._dictionary = dictionary;
|
|
51998
|
+
this._crossReference._allowCatalog = true;
|
|
51999
|
+
}
|
|
52000
|
+
this.form._clear();
|
|
51933
52001
|
}
|
|
51934
|
-
this.form._clear();
|
|
51935
52002
|
}
|
|
51936
52003
|
}
|
|
51937
52004
|
_doPostProcessOnAnnotations(isFlatten = false) {
|
|
@@ -52850,5 +52917,5 @@ class PdfBitmap extends PdfImage {
|
|
|
52850
52917
|
}
|
|
52851
52918
|
}
|
|
52852
52919
|
|
|
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 };
|
|
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 };
|
|
52854
52921
|
//# sourceMappingURL=ej2-pdf.es2015.js.map
|