@syncfusion/ej2-pdf 25.1.39 → 25.1.40
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 +8 -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 +64 -22
- package/dist/es6/ej2-pdf.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf.es5.js +64 -22
- 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/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
package/dist/es6/ej2-pdf.es5.js
CHANGED
|
@@ -37882,7 +37882,10 @@ var PdfPage = /** @__PURE__ @class */ (function () {
|
|
|
37882
37882
|
if (this._pageDictionary.has('Annots')) {
|
|
37883
37883
|
var annots = this._getProperty('Annots');
|
|
37884
37884
|
if (annots && Array.isArray(annots)) {
|
|
37885
|
-
var widgets_1
|
|
37885
|
+
var widgets_1;
|
|
37886
|
+
if (this._crossReference._document._catalog._catalogDictionary.has('AcroForm')) {
|
|
37887
|
+
widgets_1 = this._crossReference._document.form._parseWidgetReferences();
|
|
37888
|
+
}
|
|
37886
37889
|
if (widgets_1 && widgets_1.length > 0) {
|
|
37887
37890
|
var validAnnotations_1 = [];
|
|
37888
37891
|
annots.forEach(function (entry) {
|
|
@@ -44797,6 +44800,40 @@ function _decodeText(text, isColorSpace, isPassword) {
|
|
|
44797
44800
|
}
|
|
44798
44801
|
return text;
|
|
44799
44802
|
}
|
|
44803
|
+
/**
|
|
44804
|
+
* Number of bytes required to save the number.
|
|
44805
|
+
*
|
|
44806
|
+
* @param {number} input number.
|
|
44807
|
+
* @returns {number} number of bytes.
|
|
44808
|
+
*/
|
|
44809
|
+
function _getSize(input) {
|
|
44810
|
+
var size = 0;
|
|
44811
|
+
var uintMaxValue = 0xFFFFFFFF;
|
|
44812
|
+
var ushortMaxValue = 0xFFFF;
|
|
44813
|
+
var byteMaxValue = 0xFF;
|
|
44814
|
+
if (input <= uintMaxValue) {
|
|
44815
|
+
if (input <= ushortMaxValue) {
|
|
44816
|
+
if (input <= byteMaxValue) {
|
|
44817
|
+
size = 1;
|
|
44818
|
+
}
|
|
44819
|
+
else {
|
|
44820
|
+
size = 2;
|
|
44821
|
+
}
|
|
44822
|
+
}
|
|
44823
|
+
else {
|
|
44824
|
+
if (input <= (ushortMaxValue | (ushortMaxValue << 8))) {
|
|
44825
|
+
size = 3;
|
|
44826
|
+
}
|
|
44827
|
+
else {
|
|
44828
|
+
size = 4;
|
|
44829
|
+
}
|
|
44830
|
+
}
|
|
44831
|
+
}
|
|
44832
|
+
else {
|
|
44833
|
+
size = 8;
|
|
44834
|
+
}
|
|
44835
|
+
return size;
|
|
44836
|
+
}
|
|
44800
44837
|
|
|
44801
44838
|
/* eslint-disable */
|
|
44802
44839
|
var nameCache = Object.create(null);
|
|
@@ -46326,6 +46363,8 @@ var _PdfCatalog = /** @__PURE__ @class */ (function () {
|
|
|
46326
46363
|
this._crossReference._cacheMap.set(ref, form);
|
|
46327
46364
|
this._catalogDictionary.set('AcroForm', ref);
|
|
46328
46365
|
this._catalogDictionary._updated = true;
|
|
46366
|
+
this._crossReference._allowCatalog = true;
|
|
46367
|
+
form._updated = true;
|
|
46329
46368
|
return form;
|
|
46330
46369
|
};
|
|
46331
46370
|
_PdfCatalog.prototype.getPageDictionary = function (pageIndex) {
|
|
@@ -50026,39 +50065,40 @@ var _PdfCrossReference = /** @__PURE__ @class */ (function () {
|
|
|
50026
50065
|
}
|
|
50027
50066
|
this._writeObject(archiveStream, buffer, archiveRef, cipher_2);
|
|
50028
50067
|
}
|
|
50068
|
+
var formatValue = Math.max(_getSize(this._stream.bytes.length), _getSize(this._nextReferenceNumber));
|
|
50029
50069
|
var newRef = this._getNextReference();
|
|
50030
50070
|
var newStartXref = currentLength + buffer.length;
|
|
50031
50071
|
var newXref = new _PdfDictionary(this);
|
|
50032
50072
|
newXref.set('Type', _PdfName.get('XRef'));
|
|
50033
50073
|
newXref.set('Index', indexes_1);
|
|
50034
|
-
newXref.set('W', [1,
|
|
50074
|
+
newXref.set('W', [1, formatValue, 1]);
|
|
50035
50075
|
this._copyTrailer(newXref);
|
|
50036
50076
|
if (this._ids && this._ids.length > 0) {
|
|
50037
50077
|
newXref.update('ID', [this._ids[0], this._computeMessageDigest(newStartXref)]);
|
|
50038
50078
|
}
|
|
50039
50079
|
var newXrefData = [];
|
|
50040
50080
|
this._writeLong(0, 1, newXrefData);
|
|
50041
|
-
this._writeLong(1,
|
|
50081
|
+
this._writeLong(1, formatValue, newXrefData);
|
|
50042
50082
|
this._writeLong(-1, 1, newXrefData);
|
|
50043
50083
|
if (uncompressedCount > 0) {
|
|
50044
50084
|
for (var index = 0; index < uncompressedCount; index++) {
|
|
50045
50085
|
this._writeLong(1, 1, newXrefData);
|
|
50046
|
-
this._writeLong(uncompressedOffsets_1[index],
|
|
50086
|
+
this._writeLong(uncompressedOffsets_1[index], formatValue, newXrefData); // eslint-disable-line
|
|
50047
50087
|
this._writeLong(0, 1, newXrefData);
|
|
50048
50088
|
}
|
|
50049
50089
|
}
|
|
50050
50090
|
if (updatedCount > 0) {
|
|
50051
50091
|
for (var index = 0; index < updatedCount; index++) {
|
|
50052
50092
|
this._writeLong(2, 1, newXrefData);
|
|
50053
|
-
this._writeLong(archiveRef.objectNumber,
|
|
50093
|
+
this._writeLong(archiveRef.objectNumber, formatValue, newXrefData);
|
|
50054
50094
|
this._writeLong(index, 1, newXrefData);
|
|
50055
50095
|
}
|
|
50056
50096
|
this._writeLong(1, 1, newXrefData);
|
|
50057
|
-
this._writeLong(archiveOffset,
|
|
50097
|
+
this._writeLong(archiveOffset, formatValue, newXrefData);
|
|
50058
50098
|
this._writeLong(0, 1, newXrefData);
|
|
50059
50099
|
}
|
|
50060
50100
|
this._writeLong(1, 1, newXrefData);
|
|
50061
|
-
this._writeLong(newStartXref,
|
|
50101
|
+
this._writeLong(newStartXref, formatValue, newXrefData);
|
|
50062
50102
|
this._writeLong(0, 1, newXrefData);
|
|
50063
50103
|
newXref.set('Length', newXrefData.length);
|
|
50064
50104
|
var newXrefStream = new _PdfStream(newXrefData, newXref, 0, newXrefData.length);
|
|
@@ -50110,7 +50150,8 @@ var _PdfCrossReference = /** @__PURE__ @class */ (function () {
|
|
|
50110
50150
|
return array;
|
|
50111
50151
|
};
|
|
50112
50152
|
_PdfCrossReference.prototype._copyTrailer = function (newXref) {
|
|
50113
|
-
|
|
50153
|
+
var reference = this._getNextReference();
|
|
50154
|
+
newXref.set('Size', reference.objectNumber);
|
|
50114
50155
|
newXref.set('Prev', this._prevXRefOffset);
|
|
50115
50156
|
var root = this._trailer.getRaw('Root'); // eslint-disable-line
|
|
50116
50157
|
if (typeof root !== 'undefined' && root !== null) {
|
|
@@ -50576,7 +50617,6 @@ var PdfForm = /** @__PURE__ @class */ (function () {
|
|
|
50576
50617
|
this._dictionary.update('Fields', this._fields);
|
|
50577
50618
|
this._parsedFields.set(this._fields.length - 1, field);
|
|
50578
50619
|
field._form = this;
|
|
50579
|
-
this._crossReference._allowCatalog = true;
|
|
50580
50620
|
this._crossReference._root._updated = true;
|
|
50581
50621
|
if (field._kidsCount > 0) {
|
|
50582
50622
|
for (var i = 0; i < field._kidsCount; i++) {
|
|
@@ -53913,19 +53953,21 @@ var PdfDocument = /** @__PURE__ @class */ (function () {
|
|
|
53913
53953
|
};
|
|
53914
53954
|
PdfDocument.prototype._doPostProcessOnFormFields = function (isFlatten) {
|
|
53915
53955
|
if (isFlatten === void 0) { isFlatten = false; }
|
|
53916
|
-
this.
|
|
53917
|
-
|
|
53918
|
-
|
|
53919
|
-
|
|
53920
|
-
|
|
53921
|
-
|
|
53922
|
-
|
|
53923
|
-
|
|
53924
|
-
|
|
53925
|
-
|
|
53926
|
-
|
|
53956
|
+
if (this._catalog._catalogDictionary.has('AcroForm')) {
|
|
53957
|
+
this.form._doPostProcess(isFlatten);
|
|
53958
|
+
if (isFlatten) {
|
|
53959
|
+
var formObject = this._catalog._catalogDictionary.getRaw('AcroForm');
|
|
53960
|
+
var dictionary = new _PdfDictionary(this._crossReference);
|
|
53961
|
+
dictionary._updated = true;
|
|
53962
|
+
if (formObject instanceof _PdfReference) {
|
|
53963
|
+
this._crossReference._cacheMap.set(formObject, dictionary);
|
|
53964
|
+
}
|
|
53965
|
+
else {
|
|
53966
|
+
this.form._dictionary = dictionary;
|
|
53967
|
+
this._crossReference._allowCatalog = true;
|
|
53968
|
+
}
|
|
53969
|
+
this.form._clear();
|
|
53927
53970
|
}
|
|
53928
|
-
this.form._clear();
|
|
53929
53971
|
}
|
|
53930
53972
|
};
|
|
53931
53973
|
PdfDocument.prototype._doPostProcessOnAnnotations = function (isFlatten) {
|
|
@@ -54919,5 +54961,5 @@ var PdfBitmap = /** @__PURE__ @class */ (function (_super) {
|
|
|
54919
54961
|
return PdfBitmap;
|
|
54920
54962
|
}(PdfImage));
|
|
54921
54963
|
|
|
54922
|
-
export { _PdfBaseStream, _PdfStream, _PdfContentStream, _PdfNullStream, _ContentParser, _ContentLexer, _PdfRecord, _PdfDecodeStream, _PdfDecryptStream, PdfAnnotationFlag, PdfLineEndingStyle, PdfLineIntent, PdfLineCaptionType, PdfBorderStyle, PdfBorderEffectStyle, PdfRotationAngle, PdfCrossReferenceType, PdfHighlightMode, PdfTextAlignment, PdfFormFieldVisibility, PdfMeasurementUnit, PdfCircleMeasurementType, PdfRubberStampAnnotationIcon, PdfCheckBoxStyle, PdfTextMarkupAnnotationType, PdfPopupIcon, PdfAnnotationState, PdfAnnotationStateModel, PdfAttachmentIcon, PdfAnnotationIntent, PdfDestinationMode, DataFormat, PdfFormFieldsTabOrder, _PdfAnnotationType, _PdfGraphicsUnit, _FieldFlag, _SignatureFlag, _PdfCheckFieldState, PdfPermissionFlag, PdfPageOrientation, PdfTextDirection, PdfSubSuperScript, PdfBlendMode, PdfFillMode, PdfDashStyle, PdfLineCap, PdfLineJoin, _PdfWordWrapType, _FontDescriptorFlag, _TrueTypeCmapFormat, _TrueTypeCmapEncoding, _TrueTypePlatformID, _TrueTypeMicrosoftEncodingID, _TrueTypeMacintoshEncodingID, _TrueTypeCompositeGlyphFlag, _ImageFormat, _TokenType, PdfTextStyle, _PdfColorSpace, _PdfFlateStream, _PdfCatalog, _PdfCrossReference, PdfDocument, PdfAnnotationExportSettings, PdfFormFieldExportSettings, PdfPageSettings, PdfMargins, PdfFileStructure, PdfPage, PdfDestination, PdfBookmarkBase, PdfBookmark, PdfNamedDestination, _PdfNamedDestinationCollection, _PdfLexicalOperator, _PdfParser, _Linearization, _PdfName, _PdfCommand, _PdfReference, _PdfReferenceSet, _PdfReferenceSetCache, Dictionary, _PdfDictionary, _PdfNull, _clearPrimitiveCaches, _isName, _isCommand, PdfPredictorStream, _toUnsigned, _toSigned16, _toSigned32, _copyRange, _checkType, _getDecoder, _checkRotation, _getPageIndex, _annotationFlagsToString, _stringToAnnotationFlags, _stringToPdfString, _stringToBytes, _convertStringToBytes, _areArrayEqual, _numberToString, _areNotEqual, _bytesToString, _stringToUnicodeArray, _byteArrayToHexString, _hexStringToByteArray, _hexStringToString, _isWhiteSpace, _decode, _encode, _getInheritableProperty, _parseRectangle, _calculateBounds, _toRectangle, _fromRectangle, _getUpdatedBounds, _convertToColor, _parseColor, _mapBorderStyle, _mapBorderEffectStyle, _reverseMapEndingStyle, _mapLineEndingStyle, _mapHighlightMode, _reverseMapHighlightMode, _reverseMapBlendMode, _mapBlendMode, _floatToString, _addProcSet, _getNewGuidString, _escapePdfName, _getBezierArc, _findPage, _checkField, _getItemValue, _getStateTemplate, _getColorValue, _setMatrix, _styleToString, _stringToStyle, _mapMeasurementUnit, _mapMarkupAnnotationType, _reverseMarkupAnnotationType, _mapGraphicsUnit, _mapRubberStampIcon, _mapPopupIcon, _reverseMapAnnotationState, _mapAnnotationState, _reverseMapAnnotationStateModel, _mapAnnotationStateModel, _mapAttachmentIcon, _mapAnnotationIntent, _reverseMapPdfFontStyle, _getSpecialCharacter, _getLatinCharacter, _encodeValue, _getCommentsOrReview, _checkReview, _checkComment, _updateVisibility, _removeDuplicateReference, _removeDuplicateFromResources, _removeReferences, BaseException, FormatError, ParserEndOfFileException, _defaultToString, _obtainFontDetails, _getFontStyle, _mapFont, _tryParseFontStream, _checkInkPoints, _obtainDestination, _updateBounds, _decodeText, PdfAnnotationCollection, PdfPopupAnnotationCollection, PdfAnnotation, PdfComment, PdfLineAnnotation, PdfCircleAnnotation, PdfEllipseAnnotation, PdfSquareAnnotation, PdfRectangleAnnotation, PdfPolygonAnnotation, PdfPolyLineAnnotation, PdfAngleMeasurementAnnotation, PdfInkAnnotation, PdfPopupAnnotation, PdfFileLinkAnnotation, PdfUriAnnotation, PdfDocumentLinkAnnotation, PdfTextWebLinkAnnotation, PdfAttachmentAnnotation, Pdf3DAnnotation, PdfTextMarkupAnnotation, PdfWatermarkAnnotation, PdfRubberStampAnnotation, PdfSoundAnnotation, PdfFreeTextAnnotation, PdfRedactionAnnotation, PdfRichMediaAnnotation, PdfWidgetAnnotation, PdfStateItem, PdfRadioButtonListItem, PdfListFieldItem, PdfAnnotationCaption, PdfAnnotationLineEndingStyle, PdfInteractiveBorder, PdfAnnotationBorder, PdfBorderEffect, _PaintParameter, PdfAppearance, _PdfPaddings, _DecompressedOutput, _DeflateStream, _Inflater, _HuffmanTree, _InBuffer, _InflaterState, _BlockType, _PdfFontMetrics, _WidthTable, _StandardWidthTable, _CjkWidthTable, _CjkWidth, _CjkSameWidth, _CjkDifferentWidth, PdfFont, PdfStandardFont, PdfCjkStandardFont, PdfTrueTypeFont, _PdfStandardFontMetricsFactory, _PdfCjkStandardFontMetricsFactory, _PdfCjkFontDescriptorFactory, PdfFontStyle, PdfFontFamily, PdfCjkFontFamily, _UnicodeLine, PdfStringFormat, PdfVerticalAlignment, _PdfStringLayouter, _PdfStringLayoutResult, _LineInfo, _LineType, _StringTokenizer, _TrueTypeReader, _TrueTypeNameRecord, _TrueTypeMetrics, _TrueTypeLongHorMetric, _TrueTypeGlyph, _TrueTypeLocaTable, _TrueTypeGlyphHeader, _BigEndianWriter, _TrueTypeTableInfo, _TrueTypeOS2Table, _TrueTypePostTable, _TrueTypeNameTable, _TrueTypeMicrosoftCmapSubTable, _TrueTypeHorizontalHeaderTable, _TrueTypeHeadTable, _TrueTypeCmapTable, _TrueTypeCmapSubTable, _TrueTypeAppleCmapSubTable, _TrueTypeTrimmedCmapSubTable, _UnicodeTrueTypeFont, PdfField, PdfTextBoxField, PdfButtonField, PdfCheckBoxField, PdfRadioButtonListField, PdfListField, PdfComboBoxField, PdfListBoxField, PdfSignatureField, _PdfDefaultAppearance, PdfForm, PdfGraphics, _PdfTransformationMatrix, _Matrix, PdfGraphicsState, _TextRenderingMode, PdfBrush, PdfPen, _PdfUnitConvertor, _PdfPath, _PathPointType, _PdfStreamWriter, PdfTemplate, _Bidirectional, _RtlCharacters, _ArabicShapeRenderer, _ArabicShape, _RtlRenderer, _ImageDecoder, PdfBitmap, PdfImage, _PngDecoder, _JpegDecoder, _PdfEncryptor, _MD5, _Sha256, _Sha512, _Word64, _EncryptionKey, _BasicEncryption, _AdvancedEncryption, _Cipher, _NormalCipherFour, _AdvancedEncryptionBaseCipher, _AdvancedEncryption128Cipher, _AdvancedEncryption256Cipher, _NullCipher, _CipherTransform, _ExportHelper, _XfdfDocument, _FontStructure, _XmlWriter, _Namespace, _XmlElement, _XmlAttribute, _FdfDocument, _FdfHelper, _JsonDocument, _XmlDocument };
|
|
54964
|
+
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 };
|
|
54923
54965
|
//# sourceMappingURL=ej2-pdf.es5.js.map
|