@syncfusion/ej2-pdf 23.1.36 → 23.1.38
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 +11 -0
- package/dist/ej2-pdf.umd.min.js +3 -3
- package/dist/ej2-pdf.umd.min.js.map +1 -1
- package/dist/es6/ej2-pdf.es2015.js +156 -29
- package/dist/es6/ej2-pdf.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf.es5.js +156 -30
- package/dist/es6/ej2-pdf.es5.js.map +1 -1
- package/dist/global/ej2-pdf.min.js +3 -3
- package/dist/global/ej2-pdf.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +6 -6
- package/src/pdf/core/annotations/annotation-collection.js +12 -1
- package/src/pdf/core/annotations/annotation.d.ts +21 -1
- package/src/pdf/core/annotations/annotation.js +23 -23
- package/src/pdf/core/graphics/images/image-decoder.d.ts +7 -0
- package/src/pdf/core/graphics/images/image-decoder.js +98 -1
- package/src/pdf/core/import-export/xfdf-document.js +1 -1
- package/src/pdf/core/import-export/xml-document.js +3 -3
- package/src/pdf/core/pdf-cross-reference.js +1 -1
- package/src/pdf/core/utils.d.ts +9 -1
- package/src/pdf/core/utils.js +18 -0
|
@@ -14390,6 +14390,9 @@ class PdfAnnotation {
|
|
|
14390
14390
|
if (typeof this._rotate === 'undefined' && this._dictionary.has('Rotate')) {
|
|
14391
14391
|
this._rotate = (this._dictionary.get('Rotate') / 90);
|
|
14392
14392
|
}
|
|
14393
|
+
if (this._rotate === null || typeof this._rotate === 'undefined') {
|
|
14394
|
+
this._rotate = PdfRotationAngle.angle0;
|
|
14395
|
+
}
|
|
14393
14396
|
return this._rotate;
|
|
14394
14397
|
}
|
|
14395
14398
|
/**
|
|
@@ -19851,6 +19854,7 @@ class PdfInkAnnotation extends PdfComment {
|
|
|
19851
19854
|
super();
|
|
19852
19855
|
this._inkPointsCollection = [];
|
|
19853
19856
|
this._previousCollection = [];
|
|
19857
|
+
this._isModified = false;
|
|
19854
19858
|
this._dictionary = new _PdfDictionary();
|
|
19855
19859
|
this._dictionary.update('Type', _PdfName.get('Annot'));
|
|
19856
19860
|
this._dictionary.update('Subtype', _PdfName.get('Ink'));
|
|
@@ -19914,6 +19918,7 @@ class PdfInkAnnotation extends PdfComment {
|
|
|
19914
19918
|
set inkPointsCollection(value) {
|
|
19915
19919
|
if (Array.isArray(value) && value.length > 0 && value !== this._inkPointsCollection) {
|
|
19916
19920
|
this._inkPointsCollection = value;
|
|
19921
|
+
this._isModified = true;
|
|
19917
19922
|
if (this._isLoaded) {
|
|
19918
19923
|
this._dictionary.update('InkList', value);
|
|
19919
19924
|
}
|
|
@@ -20044,10 +20049,6 @@ class PdfInkAnnotation extends PdfComment {
|
|
|
20044
20049
|
}
|
|
20045
20050
|
}
|
|
20046
20051
|
}
|
|
20047
|
-
this._previousCollection.forEach((element) => {
|
|
20048
|
-
this._inkPointsCollection.push(element);
|
|
20049
|
-
});
|
|
20050
|
-
this._previousCollection = [];
|
|
20051
20052
|
}
|
|
20052
20053
|
if (typeof this.flattenPopups !== 'undefined' && this.flattenPopups) {
|
|
20053
20054
|
if (this._isLoaded) {
|
|
@@ -20212,32 +20213,32 @@ class PdfInkAnnotation extends PdfComment {
|
|
|
20212
20213
|
return vector;
|
|
20213
20214
|
}
|
|
20214
20215
|
_addInkPoints() {
|
|
20215
|
-
|
|
20216
|
-
|
|
20217
|
-
this._previousCollection.push(inkList);
|
|
20218
|
-
});
|
|
20219
|
-
}
|
|
20220
|
-
const _inkCollection = [];
|
|
20221
|
-
if (this._linePoints !== null) {
|
|
20216
|
+
const inkCollection = [];
|
|
20217
|
+
if (this._linePoints !== null && (this._previousCollection.length === 0 || this._isModified)) {
|
|
20222
20218
|
this._inkPointsCollection.unshift(this._linePoints);
|
|
20219
|
+
this._isModified = false;
|
|
20223
20220
|
}
|
|
20224
|
-
|
|
20221
|
+
const isEqual = _checkInkPoints(this._inkPointsCollection, this._previousCollection);
|
|
20222
|
+
if (this._inkPointsCollection !== null && !isEqual) {
|
|
20225
20223
|
for (let i = 0; i < this._inkPointsCollection.length; i++) {
|
|
20226
20224
|
const inkList = this._inkPointsCollection[Number.parseInt(i.toString(), 10)];
|
|
20227
|
-
|
|
20225
|
+
inkCollection.push(inkList);
|
|
20228
20226
|
}
|
|
20227
|
+
this._dictionary.update('InkList', inkCollection);
|
|
20228
|
+
}
|
|
20229
|
+
if (this._inkPointsCollection.length > 0) {
|
|
20230
|
+
this._inkPointsCollection.forEach((inkList) => {
|
|
20231
|
+
this._previousCollection.push(inkList);
|
|
20232
|
+
});
|
|
20229
20233
|
}
|
|
20230
|
-
this._dictionary.update('InkList', _inkCollection);
|
|
20231
20234
|
return this._getInkBoundsValue();
|
|
20232
20235
|
}
|
|
20233
20236
|
_getInkBoundsValue() {
|
|
20234
20237
|
let bounds = [0, 0, 0, 0];
|
|
20235
|
-
if (
|
|
20236
|
-
bounds =
|
|
20237
|
-
}
|
|
20238
|
-
else {
|
|
20239
|
-
bounds = [this.bounds.x, this.bounds.y, this.bounds.width, this.bounds.height];
|
|
20238
|
+
if (this._points) {
|
|
20239
|
+
this.bounds = { x: this._points[0], y: this._points[1], width: this._points[2], height: this._points[3] };
|
|
20240
20240
|
}
|
|
20241
|
+
bounds = [this.bounds.x, this.bounds.y, this.bounds.width, this.bounds.height];
|
|
20241
20242
|
const borderWidth = this.border.width;
|
|
20242
20243
|
if (this._inkPointsCollection !== null) {
|
|
20243
20244
|
if (this._inkPointsCollection.length > 0) {
|
|
@@ -20640,7 +20641,7 @@ class PdfPopupAnnotation extends PdfComment {
|
|
|
20640
20641
|
}
|
|
20641
20642
|
_postProcess() {
|
|
20642
20643
|
if (typeof this.bounds === 'undefined' || this.bounds === null) {
|
|
20643
|
-
|
|
20644
|
+
this._bounds = { x: 0, y: 0, width: 0, height: 0 };
|
|
20644
20645
|
}
|
|
20645
20646
|
let borderWidth;
|
|
20646
20647
|
if (this._dictionary.has('BS')) {
|
|
@@ -22956,7 +22957,7 @@ class PdfRubberStampAnnotation extends PdfComment {
|
|
|
22956
22957
|
}
|
|
22957
22958
|
else {
|
|
22958
22959
|
this._iconString = this._obtainIconName(this._icon);
|
|
22959
|
-
this._dictionary.update('Name', _PdfName.get('#' + this._iconString));
|
|
22960
|
+
this._dictionary.update('Name', _PdfName.get('#23' + this._iconString));
|
|
22960
22961
|
appearance = new PdfAppearance(this, nativeRectangle);
|
|
22961
22962
|
appearance.normal = new PdfTemplate(nativeRectangle, this._crossReference);
|
|
22962
22963
|
}
|
|
@@ -27262,7 +27263,18 @@ class PdfAnnotationCollection {
|
|
|
27262
27263
|
const index = this._annotations.length;
|
|
27263
27264
|
this._annotations.push(reference);
|
|
27264
27265
|
this._parsedAnnotations.set(index, annotation);
|
|
27265
|
-
|
|
27266
|
+
let isAdded = false;
|
|
27267
|
+
if (this._page._pageDictionary.has('Annots')) {
|
|
27268
|
+
const collection = this._page._pageDictionary.get('Annots');
|
|
27269
|
+
if (collection !== null && typeof collection !== 'undefined' && collection.indexOf(reference) === -1) {
|
|
27270
|
+
collection.push(reference);
|
|
27271
|
+
this._page._pageDictionary.set('Annots', collection);
|
|
27272
|
+
isAdded = true;
|
|
27273
|
+
}
|
|
27274
|
+
}
|
|
27275
|
+
if (!isAdded) {
|
|
27276
|
+
this._page._pageDictionary.set('Annots', this._annotations);
|
|
27277
|
+
}
|
|
27266
27278
|
this._page._pageDictionary._updated = true;
|
|
27267
27279
|
if (annotation instanceof PdfComment) {
|
|
27268
27280
|
this._addCommentsAndReview(annotation, annotation._dictionary.get('F'));
|
|
@@ -34635,6 +34647,24 @@ function _tryParseFontStream(widgetDictionary, crossReference, annotation) {
|
|
|
34635
34647
|
}
|
|
34636
34648
|
return fontData;
|
|
34637
34649
|
}
|
|
34650
|
+
/**
|
|
34651
|
+
* Gets the boolean if two arrays are equal.
|
|
34652
|
+
*
|
|
34653
|
+
* @param {Array<number[]>} inkPointsCollection Ink points collection.
|
|
34654
|
+
* @param {Array<number[]>} previousCollection Previous collection.
|
|
34655
|
+
* @returns {boolean} result.
|
|
34656
|
+
*/
|
|
34657
|
+
function _checkInkPoints(inkPointsCollection, previousCollection) {
|
|
34658
|
+
if (inkPointsCollection.length !== previousCollection.length) {
|
|
34659
|
+
return false;
|
|
34660
|
+
}
|
|
34661
|
+
for (let i = 0; i < inkPointsCollection.length; i++) {
|
|
34662
|
+
if (!_areArrayEqual(inkPointsCollection[Number.parseInt(i.toString(), 10)], previousCollection[Number.parseInt(i.toString(), 10)])) {
|
|
34663
|
+
return false;
|
|
34664
|
+
}
|
|
34665
|
+
}
|
|
34666
|
+
return true;
|
|
34667
|
+
}
|
|
34638
34668
|
|
|
34639
34669
|
/* eslint-disable */
|
|
34640
34670
|
let nameCache = Object.create(null);
|
|
@@ -39807,7 +39837,7 @@ class _PdfCrossReference {
|
|
|
39807
39837
|
}
|
|
39808
39838
|
_writeValue(value, buffer, transform, isCrossReference) {
|
|
39809
39839
|
if (value instanceof _PdfName) {
|
|
39810
|
-
this._writeString(`/${
|
|
39840
|
+
this._writeString(`/${value.name}`, buffer);
|
|
39811
39841
|
}
|
|
39812
39842
|
else if (value instanceof _PdfReference) {
|
|
39813
39843
|
this._writeString(`${value.toString()} R`, buffer);
|
|
@@ -43718,7 +43748,7 @@ class _XfdfDocument extends _ExportHelper {
|
|
|
43718
43748
|
if (measurement) {
|
|
43719
43749
|
measureDictionary.update('Type', _PdfName.get('Measure'));
|
|
43720
43750
|
if (measurement.hasAttribute('rateValue')) {
|
|
43721
|
-
const attribute = measurement.getAttribute
|
|
43751
|
+
const attribute = measurement.getAttribute('rateValue');
|
|
43722
43752
|
if (attribute && attribute !== '') {
|
|
43723
43753
|
measureDictionary.update('R', attribute);
|
|
43724
43754
|
}
|
|
@@ -46970,7 +47000,7 @@ class _XmlDocument extends _ExportHelper {
|
|
|
46970
47000
|
if (isAcrobat) {
|
|
46971
47001
|
this._table.forEach((value, key) => {
|
|
46972
47002
|
if (key.includes(' ')) {
|
|
46973
|
-
const text = key.replace(
|
|
47003
|
+
const text = key.replace(/ /g, '');
|
|
46974
47004
|
writer._writeStartElement(text.toString());
|
|
46975
47005
|
writer._writeAttributeString('original', key.toString(), 'xfdf', null);
|
|
46976
47006
|
}
|
|
@@ -46984,7 +47014,7 @@ class _XmlDocument extends _ExportHelper {
|
|
|
46984
47014
|
else {
|
|
46985
47015
|
this._table.forEach((value, key) => {
|
|
46986
47016
|
if (key.includes(' ')) {
|
|
46987
|
-
key = key.replace(
|
|
47017
|
+
key = key.replace(/ /g, '_x0020_');
|
|
46988
47018
|
}
|
|
46989
47019
|
writer._writeStartElement(key.toString());
|
|
46990
47020
|
writer._writeString(value.toString());
|
|
@@ -47043,7 +47073,7 @@ class _XmlDocument extends _ExportHelper {
|
|
|
47043
47073
|
}
|
|
47044
47074
|
let text = key.toString();
|
|
47045
47075
|
if (text.indexOf('_x0020_') !== -1) {
|
|
47046
|
-
text = text.replace(
|
|
47076
|
+
text = text.replace(/_x0020_/g, ' ');
|
|
47047
47077
|
}
|
|
47048
47078
|
const index = form._getFieldIndex(text);
|
|
47049
47079
|
if (index !== -1 && index < count) {
|
|
@@ -48079,8 +48109,11 @@ class _ImageDecoder {
|
|
|
48079
48109
|
*/
|
|
48080
48110
|
constructor(stream) {
|
|
48081
48111
|
this._format = _ImageFormat.unknown;
|
|
48112
|
+
this._height = 0;
|
|
48113
|
+
this._width = 0;
|
|
48082
48114
|
this._bitsPerComponent = 8;
|
|
48083
48115
|
this._position = 0;
|
|
48116
|
+
this._noOfComponents = -1;
|
|
48084
48117
|
this._stream = stream;
|
|
48085
48118
|
this._initialize();
|
|
48086
48119
|
}
|
|
@@ -48108,19 +48141,32 @@ class _ImageDecoder {
|
|
|
48108
48141
|
this._read(imgData, 0, imgData.byteLength);
|
|
48109
48142
|
let i = 4;
|
|
48110
48143
|
let length = this._getBuffer(i) * 256 + this._getBuffer(i + 1);
|
|
48144
|
+
let isLengthExceed = false;
|
|
48111
48145
|
while (i < imgData.byteLength) {
|
|
48112
48146
|
i += length;
|
|
48113
48147
|
if (i < imgData.byteLength) {
|
|
48114
48148
|
if (this._getBuffer(i + 1) === 192) {
|
|
48115
48149
|
this._height = this._getBuffer(i + 5) * 256 + this._getBuffer(i + 6);
|
|
48116
48150
|
this._width = this._getBuffer(i + 7) * 256 + this._getBuffer(i + 8);
|
|
48117
|
-
|
|
48151
|
+
this._noOfComponents = this._getBuffer(i + 9);
|
|
48152
|
+
if (this._width !== 0 && this._height !== 0) {
|
|
48153
|
+
return;
|
|
48154
|
+
}
|
|
48118
48155
|
}
|
|
48119
48156
|
else {
|
|
48120
48157
|
i += 2;
|
|
48121
48158
|
length = this._getBuffer(i) * 256 + this._getBuffer(i + 1);
|
|
48122
48159
|
}
|
|
48123
48160
|
}
|
|
48161
|
+
else {
|
|
48162
|
+
isLengthExceed = true;
|
|
48163
|
+
break;
|
|
48164
|
+
}
|
|
48165
|
+
}
|
|
48166
|
+
if (isLengthExceed) {
|
|
48167
|
+
this._reset();
|
|
48168
|
+
this._seek(2);
|
|
48169
|
+
this._readExceededJpegImage();
|
|
48124
48170
|
}
|
|
48125
48171
|
}
|
|
48126
48172
|
_checkIfJpeg() {
|
|
@@ -48178,6 +48224,12 @@ class _ImageDecoder {
|
|
|
48178
48224
|
return this._imageStream;
|
|
48179
48225
|
}
|
|
48180
48226
|
_getColorSpace() {
|
|
48227
|
+
if (this._noOfComponents === 1) {
|
|
48228
|
+
return 'DeviceGray';
|
|
48229
|
+
}
|
|
48230
|
+
else if (this._noOfComponents === 4) {
|
|
48231
|
+
return 'DeviceCMYK';
|
|
48232
|
+
}
|
|
48181
48233
|
return 'DeviceRGB';
|
|
48182
48234
|
}
|
|
48183
48235
|
_getDecodeParams() {
|
|
@@ -48189,6 +48241,81 @@ class _ImageDecoder {
|
|
|
48189
48241
|
decodeParams.set('BitsPerComponent', this._bitsPerComponent);
|
|
48190
48242
|
return decodeParams;
|
|
48191
48243
|
}
|
|
48244
|
+
_seek(length) {
|
|
48245
|
+
this._position += length;
|
|
48246
|
+
}
|
|
48247
|
+
_readByte() {
|
|
48248
|
+
if (this._position < this._stream.byteLength) {
|
|
48249
|
+
const value = this._getBuffer(this._position);
|
|
48250
|
+
this._position += 1;
|
|
48251
|
+
return value;
|
|
48252
|
+
}
|
|
48253
|
+
else {
|
|
48254
|
+
throw new Error('Error decoding JPEG image. Invalid offset.');
|
|
48255
|
+
}
|
|
48256
|
+
}
|
|
48257
|
+
_skipStream() {
|
|
48258
|
+
let length = this._getBuffer(this._position) << 8 | this._getBuffer(this._position + 1);
|
|
48259
|
+
this._seek(2);
|
|
48260
|
+
if (length < 2) {
|
|
48261
|
+
throw new Error('Error decoding JPEG image');
|
|
48262
|
+
}
|
|
48263
|
+
else if (length > 0) {
|
|
48264
|
+
this._seek(length - 2);
|
|
48265
|
+
}
|
|
48266
|
+
}
|
|
48267
|
+
_readExceededJpegImage() {
|
|
48268
|
+
let isContinueReading = true;
|
|
48269
|
+
while (isContinueReading) {
|
|
48270
|
+
let marker = this._getMarker();
|
|
48271
|
+
switch (marker) {
|
|
48272
|
+
case 0x00C0:
|
|
48273
|
+
case 0x00C1:
|
|
48274
|
+
case 0x00C2:
|
|
48275
|
+
case 0x00C3:
|
|
48276
|
+
case 0x00C5:
|
|
48277
|
+
case 0x00C6:
|
|
48278
|
+
case 0x00C7:
|
|
48279
|
+
case 0x00C9:
|
|
48280
|
+
case 0x00CA:
|
|
48281
|
+
case 0x00CB:
|
|
48282
|
+
case 0x00CD:
|
|
48283
|
+
case 0x00CE:
|
|
48284
|
+
case 0x00CF:
|
|
48285
|
+
this._seek(3);
|
|
48286
|
+
this._height = this._getBuffer(this._position) << 8 | this._getBuffer(this._position + 1);
|
|
48287
|
+
this._seek(2);
|
|
48288
|
+
this._width = this._getBuffer(this._position) << 8 | this._getBuffer(this._position + 1);
|
|
48289
|
+
this._seek(2);
|
|
48290
|
+
this._noOfComponents = this._getBuffer(this._position);
|
|
48291
|
+
this._seek(1);
|
|
48292
|
+
isContinueReading = false;
|
|
48293
|
+
break;
|
|
48294
|
+
default:
|
|
48295
|
+
this._skipStream();
|
|
48296
|
+
break;
|
|
48297
|
+
}
|
|
48298
|
+
}
|
|
48299
|
+
}
|
|
48300
|
+
_toUnsigned16(value) {
|
|
48301
|
+
value = value & 0xFFFF;
|
|
48302
|
+
return value < 0 ? (value + 0x10000) : value;
|
|
48303
|
+
}
|
|
48304
|
+
_getMarker() {
|
|
48305
|
+
let skippedByte = 0;
|
|
48306
|
+
let marker = this._readByte();
|
|
48307
|
+
while (marker != 255) {
|
|
48308
|
+
skippedByte++;
|
|
48309
|
+
marker = this._readByte();
|
|
48310
|
+
}
|
|
48311
|
+
do {
|
|
48312
|
+
marker = this._readByte();
|
|
48313
|
+
} while (marker == 255);
|
|
48314
|
+
if (skippedByte != 0) {
|
|
48315
|
+
throw new Error('Error decoding JPEG image');
|
|
48316
|
+
}
|
|
48317
|
+
return this._toUnsigned16(marker);
|
|
48318
|
+
}
|
|
48192
48319
|
}
|
|
48193
48320
|
_ImageDecoder._jpegHeader = [255, 216];
|
|
48194
48321
|
|
|
@@ -48241,5 +48368,5 @@ class PdfBitmap extends PdfImage {
|
|
|
48241
48368
|
}
|
|
48242
48369
|
}
|
|
48243
48370
|
|
|
48244
|
-
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, _PdfFlateStream, _PdfCatalog, _PdfCrossReference, PdfDocument, PdfAnnotationExportSettings, PdfFormFieldExportSettings, PdfFileStructure, PdfPage, PdfDestination, PdfBookmarkBase, PdfBookmark, PdfNamedDestination, _PdfNamedDestinationCollection, _PdfLexicalOperator, _PdfParser, _Linearization, _PdfName, _PdfCommand, _PdfReference, _PdfReferenceSet, _PdfReferenceSetCache, Dictionary, _PdfDictionary, _PdfNull, _clearPrimitiveCaches, _isName, _isCommand, PdfPredictorStream, _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, 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, _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, _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 };
|
|
48371
|
+
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, _PdfFlateStream, _PdfCatalog, _PdfCrossReference, PdfDocument, PdfAnnotationExportSettings, PdfFormFieldExportSettings, PdfFileStructure, PdfPage, PdfDestination, PdfBookmarkBase, PdfBookmark, PdfNamedDestination, _PdfNamedDestinationCollection, _PdfLexicalOperator, _PdfParser, _Linearization, _PdfName, _PdfCommand, _PdfReference, _PdfReferenceSet, _PdfReferenceSetCache, Dictionary, _PdfDictionary, _PdfNull, _clearPrimitiveCaches, _isName, _isCommand, PdfPredictorStream, _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, 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, _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, _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 };
|
|
48245
48372
|
//# sourceMappingURL=ej2-pdf.es2015.js.map
|