@pdftron/pdfnet-node-samples 10.7.0 → 10.8.0

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.
Files changed (59) hide show
  1. package/package.json +21 -20
  2. package/readme.md +12 -12
  3. package/samples/AddImageTest/AddImageTest.js +115 -115
  4. package/samples/AdvancedImagingTest/AdvancedImagingTest.js +78 -78
  5. package/samples/AnnotationTest/AnnotationTest.js +641 -641
  6. package/samples/BookmarkTest/BookmarkTest.js +219 -219
  7. package/samples/CAD2PDFTest/CAD2PDFTest.js +79 -79
  8. package/samples/ContentReplacerTest/ContentReplacerTest.js +75 -75
  9. package/samples/ConvertPrintTest/ConvertPrintTest.js +153 -153
  10. package/samples/ConvertTest/ConvertTest.js +203 -203
  11. package/samples/DataExtractionTest/DataExtractionTest.js +214 -214
  12. package/samples/DigitalSignaturesTest/DigitalSignaturesTest.js +526 -526
  13. package/samples/DocumentCreationTest/DocumentCreationTest.js +409 -409
  14. package/samples/ElementBuilderTest/ElementBuilderTest.js +513 -513
  15. package/samples/ElementEditTest/ElementEditTest.js +110 -110
  16. package/samples/ElementReaderAdvTest/ElementReaderAdvTest.js +305 -305
  17. package/samples/ElementReaderTest/ElementReaderTest.js +77 -77
  18. package/samples/EncTest/EncTest.js +175 -175
  19. package/samples/FDFTest/FDFTest.js +218 -218
  20. package/samples/HTML2PDFTest/HTML2PDFTest.js +164 -164
  21. package/samples/HighlightsTest/HighlightsTest.js +97 -97
  22. package/samples/ImageExtractTest/ImageExtractTest.js +129 -129
  23. package/samples/ImpositionTest/ImpositionTest.js +86 -86
  24. package/samples/InteractiveFormsTest/InteractiveFormsTest.js +381 -381
  25. package/samples/JBIG2Test/JBIG2Test.js +88 -88
  26. package/samples/LicenseKey/LicenseKey.js +11 -11
  27. package/samples/LogicalStructureTest/LogicalStructureTest.js +250 -250
  28. package/samples/OCRTest/OCRTest.js +235 -235
  29. package/samples/OfficeTemplateTest/OfficeTemplateTest.js +79 -79
  30. package/samples/OfficeToPDFTest/OfficeToPDFTest.js +125 -125
  31. package/samples/OptimizerTest/OptimizerTest.js +191 -191
  32. package/samples/PDF2HtmlTest/PDF2HtmlTest.js +123 -123
  33. package/samples/PDF2OfficeTest/PDF2OfficeTest.js +158 -158
  34. package/samples/PDFATest/PDFATest.js +85 -85
  35. package/samples/PDFDocMemoryTest/PDFDocMemoryTest.js +84 -84
  36. package/samples/PDFDrawTest/PDFDrawTest.js +305 -305
  37. package/samples/PDFLayersTest/PDFLayersTest.js +294 -294
  38. package/samples/PDFPackageTest/PDFPackageTest.js +111 -111
  39. package/samples/PDFPageTest/PDFPageTest.js +189 -189
  40. package/samples/PDFRedactTest/PDFRedactTest.js +74 -74
  41. package/samples/PageLabelsTest/PageLabelsTest.js +138 -138
  42. package/samples/PatternTest/PatternTest.js +226 -226
  43. package/samples/RectTest/RectTest.js +40 -40
  44. package/samples/SDFTest/SDFTest.js +87 -87
  45. package/samples/StamperTest/StamperTest.js +255 -255
  46. package/samples/TestFiles/Misc-Fixed.pfa +1166 -1166
  47. package/samples/TestFiles/SHA-2 Root USERTrust RSA CA Sectigo timestamping.crt +34 -34
  48. package/samples/TestFiles/form1_annots.xfdf +33 -33
  49. package/samples/TestFiles/form1_data.xfdf +139 -139
  50. package/samples/TestFiles/my_stream.txt +2310 -2310
  51. package/samples/TestFiles/tiger.svg +378 -378
  52. package/samples/TextExtractTest/TextExtractTest.js +286 -286
  53. package/samples/TextSearchTest/TextSearchTest.js +121 -121
  54. package/samples/U3DTest/U3DTest.js +104 -104
  55. package/samples/UndoRedoTest/UndoRedoTest.js +101 -101
  56. package/samples/UnicodeWriteTest/UnicodeWriteTest.js +173 -173
  57. package/samples/WebViewerConvertTest/WebViewerConvertTest.js +135 -135
  58. package/samples/runall.bat +12 -12
  59. package/samples/runall.sh +15 -15
@@ -1,219 +1,219 @@
1
- //---------------------------------------------------------------------------------------
2
- // Copyright (c) 2001-2024 by Apryse Software Inc. All Rights Reserved.
3
- // Consult legal.txt regarding legal and license information.
4
- //---------------------------------------------------------------------------------------
5
-
6
- //---------------------------------------------------------------------------------------
7
- // PDFNet includes a full support for FDF (Forms Data Format) and capability to merge/extract
8
- // forms data (FDF) with/from PDF. This sample illustrates basic FDF merge/extract functionality
9
- // available in PDFNet.
10
- //---------------------------------------------------------------------------------------
11
-
12
- const { PDFNet } = require('@pdftron/pdfnet-node');
13
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
14
-
15
- ((exports) => {
16
-
17
- exports.runFDFTest = () => {
18
- const main = async () => {
19
- const inputPath = '../TestFiles/';
20
- const outputPath = '../TestFiles/Output/';
21
-
22
- // Example 1)
23
- // Iterate over all form fields in the document. Display all field names.
24
- try {
25
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'form1.pdf');
26
- doc.initSecurityHandler();
27
-
28
- for (const itr = await doc.getFieldIteratorBegin(); await itr.hasNext(); itr.next()) {
29
- const field = await itr.current();
30
- console.log('Field name: ' + await field.getName());
31
- console.log('Field partial name: ' + await field.getPartialName());
32
-
33
- switch (await field.getType()) {
34
- case PDFNet.Field.Type.e_button:
35
- console.log('Field type: Button');
36
- break;
37
- case PDFNet.Field.Type.e_check:
38
- console.log('Field type: Check');
39
- break;
40
- case PDFNet.Field.Type.e_radio:
41
- console.log('Field type: Radio');
42
- break;
43
- case PDFNet.Field.Type.e_text:
44
- console.log('Field type: Text');
45
- break;
46
- case PDFNet.Field.Type.e_choice:
47
- console.log('Field type: Choice');
48
- break;
49
- case PDFNet.Field.Type.e_signature:
50
- console.log('Field type: Signature');
51
- break;
52
- default:
53
- console.log('Field type: Null');
54
- break;
55
- }
56
- console.log('------------------------------')
57
- }
58
- console.log('Done.');
59
- } catch (err) {
60
- console.log(err);
61
- }
62
-
63
- // Example 2) Import XFDF into FDF, then merge data from FDF into PDF
64
- try {
65
- // FDF to PDF
66
- // form fields
67
- console.log('Import form field data from XFDF to FDF.');
68
-
69
- const fdf_doc1 = await PDFNet.FDFDoc.createFromXFDF(inputPath + 'form1_data.xfdf');
70
- await fdf_doc1.save(outputPath + 'form1_data.fdf');
71
-
72
- // annotations
73
- console.log('Import annotations from XFDF to FDF.');
74
-
75
- const fdf_doc2 = await PDFNet.FDFDoc.createFromXFDF(inputPath + 'form1_annots.xfdf');
76
- await fdf_doc2.save(outputPath + 'form1_annots.fdf');
77
-
78
- // FDF to PDF
79
- // form fields
80
- console.log('Merge form field data from FDF.');
81
-
82
- const doc = await PDFNet.PDFDoc.createFromFilePath(`${inputPath}form1.pdf`);
83
- doc.initSecurityHandler();
84
- await doc.fdfMerge(fdf_doc1);
85
-
86
- // Refreshing missing appearances is not required here, but is recommended to make them
87
- // visible in PDF viewers with incomplete annotation viewing support. (such as Chrome)
88
- doc.refreshAnnotAppearances();
89
-
90
- await doc.save(outputPath + 'form1_filled.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
91
-
92
- // annotations
93
- console.log('Merge annotations from FDF.');
94
-
95
- await doc.fdfMerge(fdf_doc2);
96
- // Refreshing missing appearances is not required here, but is recommended to make them
97
- // visible in PDF viewers with incomplete annotation viewing support. (such as Chrome)
98
- doc.refreshAnnotAppearances();
99
- await doc.save(outputPath + 'form1_filled_with_annots.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
100
- console.log('Done.');
101
- } catch (err) {
102
- console.log(err);
103
- }
104
-
105
-
106
- // Example 3) Extract data from PDF to FDF, then export FDF as XFDF
107
- try {
108
- // PDF to FDF
109
- const in_doc = await PDFNet.PDFDoc.createFromFilePath(outputPath + 'form1_filled_with_annots.pdf');
110
- in_doc.initSecurityHandler();
111
-
112
- // form fields only
113
- console.log('Extract form fields data to FDF.');
114
-
115
- const doc_fields = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_forms_only);
116
- doc_fields.setPDFFileName('../form1_filled_with_annots.pdf');
117
- await doc_fields.save(outputPath + 'form1_filled_data.fdf');
118
-
119
- // annotations only
120
- console.log('Extract annotations to FDF.');
121
-
122
- const doc_annots = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_annots_only);
123
- doc_annots.setPDFFileName('../form1_filled_with_annots.pdf');
124
- await doc_annots.save(outputPath + 'form1_filled_annot.fdf');
125
-
126
- // both form fields and annotations
127
- console.log('Extract both form fields and annotations to FDF.');
128
-
129
- const doc_both = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_both);
130
- doc_both.setPDFFileName('../form1_filled_with_annots.pdf');
131
- await doc_both.save(outputPath + 'form1_filled_both.fdf');
132
-
133
- // FDF to XFDF
134
- // form fields
135
- console.log('Export form field data from FDF to XFDF.');
136
-
137
- await doc_fields.saveAsXFDF(outputPath + 'form1_filled_data.xfdf');
138
-
139
- // annotations
140
- console.log('Export annotations from FDF to XFDF.');
141
-
142
- await doc_annots.saveAsXFDF(outputPath + 'form1_filled_annot.xfdf');
143
-
144
- // both form fields and annotations
145
- console.log('Export both form fields and annotations from FDF to XFDF.');
146
-
147
- await doc_both.saveAsXFDF(outputPath + 'form1_filled_both.xfdf');
148
-
149
- console.log('Done.');
150
- } catch (err) {
151
- console.log(err);
152
- }
153
-
154
- // Example 4) Merge/Extract XFDF into/from PDF
155
- try {
156
- // Merge XFDF from string
157
- const in_doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'numbered.pdf');
158
- in_doc.initSecurityHandler();
159
-
160
- console.log('Merge XFDF string into PDF.');
161
-
162
- const str = `<?xml version="1.0" encoding="UTF-8" ?><xfdf xmlns="http://ns.adobe.com/xfdf" xml:space="preserve"><square subject="Rectangle" page="0" name="cf4d2e58-e9c5-2a58-5b4d-9b4b1a330e45" title="user" creationdate="D:20120827112326-07'00'" date="D:20120827112326-07'00'" rect="227.7814207650273,597.6174863387978,437.07103825136608,705.0491803278688" color="#000000" interior-color="#FFFF00" flags="print" width="1"><popup flags="print,nozoom,norotate" open="no" page="0" rect="0,792,0,792" /></square></xfdf>`;
163
-
164
- const fdoc = await PDFNet.FDFDoc.createFromXFDF(str);
165
- in_doc.fdfMerge(fdoc);
166
- await in_doc.save(outputPath + 'numbered_modified.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
167
- console.log('Merge complete.');
168
-
169
- // Extract XFDF as string
170
- console.log('Extract XFDF as a string.');
171
-
172
- const fdoc_new = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_both);
173
- const XFDF_str = await fdoc_new.saveAsXFDFAsString();
174
- console.log('Extracted XFDF: ');
175
- console.log(XFDF_str);
176
- console.log('Extract complete.');
177
- } catch (err) {
178
- console.log(err);
179
- }
180
-
181
- // Example 5) Read FDF files directly
182
- try {
183
- const doc = await PDFNet.FDFDoc.createFromFilePath(outputPath + 'form1_filled_data.fdf');
184
-
185
- for (const itr = await doc.getFieldIteratorBegin(); await itr.hasNext(); itr.next()) {
186
- const field = await itr.current();
187
- console.log('Field name: ' + await field.getName());
188
- console.log('Field partial name: ' + await field.getPartialName());
189
-
190
- console.log('------------------------------');
191
- }
192
-
193
- console.log('Done.');
194
- } catch (err) {
195
- console.log(err);
196
- }
197
-
198
- // Example 6) Direct generation of FDF.
199
- try
200
- {
201
- const doc = await PDFNet.FDFDoc.create();
202
- // Create new fields (i.e. key/value pairs).
203
- doc.fieldCreateFromString('Company', PDFNet.Field.Type.e_text, 'PDFTron Systems');
204
- doc.fieldCreateFromString('First Name', PDFNet.Field.Type.e_text, 'John');
205
- doc.fieldCreateFromString('Last Name', PDFNet.Field.Type.e_text, 'Doe');
206
-
207
- await doc.save(outputPath + 'sample_output.fdf');
208
- console.log('Done. Results saved in sample_output.fdf');
209
- } catch (err) {
210
- console.log(err);
211
- }
212
- };
213
-
214
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) { console.log('Error: ' + JSON.stringify(error)); }).then(function () { return PDFNet.shutdown(); });
215
- };
216
- exports.runFDFTest();
217
- })(exports);
218
- // eslint-disable-next-line spaced-comment
1
+ //---------------------------------------------------------------------------------------
2
+ // Copyright (c) 2001-2024 by Apryse Software Inc. All Rights Reserved.
3
+ // Consult legal.txt regarding legal and license information.
4
+ //---------------------------------------------------------------------------------------
5
+
6
+ //---------------------------------------------------------------------------------------
7
+ // PDFNet includes a full support for FDF (Forms Data Format) and capability to merge/extract
8
+ // forms data (FDF) with/from PDF. This sample illustrates basic FDF merge/extract functionality
9
+ // available in PDFNet.
10
+ //---------------------------------------------------------------------------------------
11
+
12
+ const { PDFNet } = require('@pdftron/pdfnet-node');
13
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
14
+
15
+ ((exports) => {
16
+
17
+ exports.runFDFTest = () => {
18
+ const main = async () => {
19
+ const inputPath = '../TestFiles/';
20
+ const outputPath = '../TestFiles/Output/';
21
+
22
+ // Example 1)
23
+ // Iterate over all form fields in the document. Display all field names.
24
+ try {
25
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'form1.pdf');
26
+ doc.initSecurityHandler();
27
+
28
+ for (const itr = await doc.getFieldIteratorBegin(); await itr.hasNext(); itr.next()) {
29
+ const field = await itr.current();
30
+ console.log('Field name: ' + await field.getName());
31
+ console.log('Field partial name: ' + await field.getPartialName());
32
+
33
+ switch (await field.getType()) {
34
+ case PDFNet.Field.Type.e_button:
35
+ console.log('Field type: Button');
36
+ break;
37
+ case PDFNet.Field.Type.e_check:
38
+ console.log('Field type: Check');
39
+ break;
40
+ case PDFNet.Field.Type.e_radio:
41
+ console.log('Field type: Radio');
42
+ break;
43
+ case PDFNet.Field.Type.e_text:
44
+ console.log('Field type: Text');
45
+ break;
46
+ case PDFNet.Field.Type.e_choice:
47
+ console.log('Field type: Choice');
48
+ break;
49
+ case PDFNet.Field.Type.e_signature:
50
+ console.log('Field type: Signature');
51
+ break;
52
+ default:
53
+ console.log('Field type: Null');
54
+ break;
55
+ }
56
+ console.log('------------------------------')
57
+ }
58
+ console.log('Done.');
59
+ } catch (err) {
60
+ console.log(err);
61
+ }
62
+
63
+ // Example 2) Import XFDF into FDF, then merge data from FDF into PDF
64
+ try {
65
+ // FDF to PDF
66
+ // form fields
67
+ console.log('Import form field data from XFDF to FDF.');
68
+
69
+ const fdf_doc1 = await PDFNet.FDFDoc.createFromXFDF(inputPath + 'form1_data.xfdf');
70
+ await fdf_doc1.save(outputPath + 'form1_data.fdf');
71
+
72
+ // annotations
73
+ console.log('Import annotations from XFDF to FDF.');
74
+
75
+ const fdf_doc2 = await PDFNet.FDFDoc.createFromXFDF(inputPath + 'form1_annots.xfdf');
76
+ await fdf_doc2.save(outputPath + 'form1_annots.fdf');
77
+
78
+ // FDF to PDF
79
+ // form fields
80
+ console.log('Merge form field data from FDF.');
81
+
82
+ const doc = await PDFNet.PDFDoc.createFromFilePath(`${inputPath}form1.pdf`);
83
+ doc.initSecurityHandler();
84
+ await doc.fdfMerge(fdf_doc1);
85
+
86
+ // Refreshing missing appearances is not required here, but is recommended to make them
87
+ // visible in PDF viewers with incomplete annotation viewing support. (such as Chrome)
88
+ doc.refreshAnnotAppearances();
89
+
90
+ await doc.save(outputPath + 'form1_filled.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
91
+
92
+ // annotations
93
+ console.log('Merge annotations from FDF.');
94
+
95
+ await doc.fdfMerge(fdf_doc2);
96
+ // Refreshing missing appearances is not required here, but is recommended to make them
97
+ // visible in PDF viewers with incomplete annotation viewing support. (such as Chrome)
98
+ doc.refreshAnnotAppearances();
99
+ await doc.save(outputPath + 'form1_filled_with_annots.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
100
+ console.log('Done.');
101
+ } catch (err) {
102
+ console.log(err);
103
+ }
104
+
105
+
106
+ // Example 3) Extract data from PDF to FDF, then export FDF as XFDF
107
+ try {
108
+ // PDF to FDF
109
+ const in_doc = await PDFNet.PDFDoc.createFromFilePath(outputPath + 'form1_filled_with_annots.pdf');
110
+ in_doc.initSecurityHandler();
111
+
112
+ // form fields only
113
+ console.log('Extract form fields data to FDF.');
114
+
115
+ const doc_fields = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_forms_only);
116
+ doc_fields.setPDFFileName('../form1_filled_with_annots.pdf');
117
+ await doc_fields.save(outputPath + 'form1_filled_data.fdf');
118
+
119
+ // annotations only
120
+ console.log('Extract annotations to FDF.');
121
+
122
+ const doc_annots = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_annots_only);
123
+ doc_annots.setPDFFileName('../form1_filled_with_annots.pdf');
124
+ await doc_annots.save(outputPath + 'form1_filled_annot.fdf');
125
+
126
+ // both form fields and annotations
127
+ console.log('Extract both form fields and annotations to FDF.');
128
+
129
+ const doc_both = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_both);
130
+ doc_both.setPDFFileName('../form1_filled_with_annots.pdf');
131
+ await doc_both.save(outputPath + 'form1_filled_both.fdf');
132
+
133
+ // FDF to XFDF
134
+ // form fields
135
+ console.log('Export form field data from FDF to XFDF.');
136
+
137
+ await doc_fields.saveAsXFDF(outputPath + 'form1_filled_data.xfdf');
138
+
139
+ // annotations
140
+ console.log('Export annotations from FDF to XFDF.');
141
+
142
+ await doc_annots.saveAsXFDF(outputPath + 'form1_filled_annot.xfdf');
143
+
144
+ // both form fields and annotations
145
+ console.log('Export both form fields and annotations from FDF to XFDF.');
146
+
147
+ await doc_both.saveAsXFDF(outputPath + 'form1_filled_both.xfdf');
148
+
149
+ console.log('Done.');
150
+ } catch (err) {
151
+ console.log(err);
152
+ }
153
+
154
+ // Example 4) Merge/Extract XFDF into/from PDF
155
+ try {
156
+ // Merge XFDF from string
157
+ const in_doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'numbered.pdf');
158
+ in_doc.initSecurityHandler();
159
+
160
+ console.log('Merge XFDF string into PDF.');
161
+
162
+ const str = `<?xml version="1.0" encoding="UTF-8" ?><xfdf xmlns="http://ns.adobe.com/xfdf" xml:space="preserve"><square subject="Rectangle" page="0" name="cf4d2e58-e9c5-2a58-5b4d-9b4b1a330e45" title="user" creationdate="D:20120827112326-07'00'" date="D:20120827112326-07'00'" rect="227.7814207650273,597.6174863387978,437.07103825136608,705.0491803278688" color="#000000" interior-color="#FFFF00" flags="print" width="1"><popup flags="print,nozoom,norotate" open="no" page="0" rect="0,792,0,792" /></square></xfdf>`;
163
+
164
+ const fdoc = await PDFNet.FDFDoc.createFromXFDF(str);
165
+ in_doc.fdfMerge(fdoc);
166
+ await in_doc.save(outputPath + 'numbered_modified.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
167
+ console.log('Merge complete.');
168
+
169
+ // Extract XFDF as string
170
+ console.log('Extract XFDF as a string.');
171
+
172
+ const fdoc_new = await in_doc.fdfExtract(PDFNet.PDFDoc.ExtractFlag.e_both);
173
+ const XFDF_str = await fdoc_new.saveAsXFDFAsString();
174
+ console.log('Extracted XFDF: ');
175
+ console.log(XFDF_str);
176
+ console.log('Extract complete.');
177
+ } catch (err) {
178
+ console.log(err);
179
+ }
180
+
181
+ // Example 5) Read FDF files directly
182
+ try {
183
+ const doc = await PDFNet.FDFDoc.createFromFilePath(outputPath + 'form1_filled_data.fdf');
184
+
185
+ for (const itr = await doc.getFieldIteratorBegin(); await itr.hasNext(); itr.next()) {
186
+ const field = await itr.current();
187
+ console.log('Field name: ' + await field.getName());
188
+ console.log('Field partial name: ' + await field.getPartialName());
189
+
190
+ console.log('------------------------------');
191
+ }
192
+
193
+ console.log('Done.');
194
+ } catch (err) {
195
+ console.log(err);
196
+ }
197
+
198
+ // Example 6) Direct generation of FDF.
199
+ try
200
+ {
201
+ const doc = await PDFNet.FDFDoc.create();
202
+ // Create new fields (i.e. key/value pairs).
203
+ doc.fieldCreateFromString('Company', PDFNet.Field.Type.e_text, 'PDFTron Systems');
204
+ doc.fieldCreateFromString('First Name', PDFNet.Field.Type.e_text, 'John');
205
+ doc.fieldCreateFromString('Last Name', PDFNet.Field.Type.e_text, 'Doe');
206
+
207
+ await doc.save(outputPath + 'sample_output.fdf');
208
+ console.log('Done. Results saved in sample_output.fdf');
209
+ } catch (err) {
210
+ console.log(err);
211
+ }
212
+ };
213
+
214
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) { console.log('Error: ' + JSON.stringify(error)); }).then(function () { return PDFNet.shutdown(); });
215
+ };
216
+ exports.runFDFTest();
217
+ })(exports);
218
+ // eslint-disable-next-line spaced-comment
219
219
  //# sourceURL=FDFTest.js