@pdftron/pdfnet-node-samples 9.1.0-2 → 9.2.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 (45) hide show
  1. package/package.json +18 -18
  2. package/samples/AddImageTest/AddImageTest.js +115 -115
  3. package/samples/AdvancedImagingTest/AdvancedImagingTest.js +64 -64
  4. package/samples/AnnotationTest/AnnotationTest.js +641 -641
  5. package/samples/BookmarkTest/BookmarkTest.js +219 -219
  6. package/samples/ContentReplacerTest/ContentReplacerTest.js +75 -75
  7. package/samples/ElementBuilderTest/ElementBuilderTest.js +513 -513
  8. package/samples/ElementEditTest/ElementEditTest.js +110 -110
  9. package/samples/ElementReaderAdvTest/ElementReaderAdvTest.js +305 -305
  10. package/samples/ElementReaderTest/ElementReaderTest.js +77 -77
  11. package/samples/EncTest/EncTest.js +175 -175
  12. package/samples/LicenseKey/LicenseKey.js +11 -11
  13. package/samples/LogicalStructureTest/LogicalStructureTest.js +250 -250
  14. package/samples/PDF2HtmlTest/PDF2HtmlTest.js +123 -117
  15. package/samples/PDF2OfficeTest/PDF2OfficeTest.js +158 -0
  16. package/samples/PDF2OfficeTest/RunTest.bat +2 -0
  17. package/samples/PDF2OfficeTest/RunTest.sh +2 -0
  18. package/samples/PDFATest/PDFATest.js +85 -85
  19. package/samples/PDFDrawTest/PDFDrawTest.js +305 -305
  20. package/samples/PDFLayersTest/PDFLayersTest.js +294 -294
  21. package/samples/PDFPageTest/PDFPageTest.js +189 -189
  22. package/samples/PDFRedactTest/PDFRedactTest.js +74 -74
  23. package/samples/RectTest/RectTest.js +40 -40
  24. package/samples/SDFTest/SDFTest.js +88 -88
  25. package/samples/StamperTest/StamperTest.js +255 -255
  26. package/samples/TestFiles/Misc-Fixed.pfa +1166 -1166
  27. package/samples/TestFiles/SHA-2 Root USERTrust RSA CA Sectigo timestamping.crt +34 -34
  28. package/samples/TestFiles/form1_annots.xfdf +33 -33
  29. package/samples/TestFiles/form1_data.xfdf +139 -139
  30. package/samples/TestFiles/my_stream.txt +2310 -2310
  31. package/samples/TextExtractTest/TextExtractTest.js +286 -286
  32. package/samples/TextSearchTest/TextSearchTest.js +121 -121
  33. package/samples/UndoRedoTest/UndoRedoTest.js +101 -101
  34. package/samples/UnicodeWriteTest/UnicodeWriteTest.js +173 -173
  35. package/samples/runall.bat +3 -3
  36. package/samples/runall.sh +14 -14
  37. package/samples/PDF2WordTest/PDF2WordTest.js +0 -85
  38. package/samples/PDF2WordTest/RunTest.bat +0 -2
  39. package/samples/PDF2WordTest/RunTest.sh +0 -2
  40. package/samples/TestFiles/Output/addimage.pdf +0 -0
  41. package/samples/TestFiles/Output/annotation_test1.pdf +0 -0
  42. package/samples/TestFiles/Output/annotation_test2.pdf +0 -0
  43. package/samples/TestFiles/Output/bookmark.pdf +0 -0
  44. package/samples/TestFiles/Output/bookmark_remote.pdf +0 -0
  45. package/samples/TestFiles/Output/new_annot_test_api.pdf +0 -0
@@ -1,117 +1,123 @@
1
- //---------------------------------------------------------------------------------------
2
- // Copyright (c) 2001-2021 by PDFTron Systems Inc. All Rights Reserved.
3
- // Consult legal.txt regarding legal and license information.
4
- //---------------------------------------------------------------------------------------
5
-
6
- //---------------------------------------------------------------------------------------
7
- // The following sample illustrates how to use the PDF::Convert utility class to convert
8
- // documents and files to HTML.
9
- //
10
- // There are two HTML modules and one of them is an optional PDFNet Add-on.
11
- // 1. The built-in HTML module is used to convert PDF documents to fixed-position HTML
12
- // documents.
13
- // 2. The optional add-on module is used to convert PDF documents to HTML documents with
14
- // text flowing within paragraphs.
15
- //
16
- // The PDFTron SDK HTML add-on module can be downloaded from http://www.pdftron.com/
17
- //
18
- // Please contact us if you have any questions.
19
- //---------------------------------------------------------------------------------------
20
-
21
- const { PDFNet } = require('@pdftron/pdfnet-node');
22
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
23
-
24
- ((exports) => {
25
- 'use strict';
26
-
27
- exports.runPDF2HtmlTest = () => {
28
-
29
- const main = async () => {
30
-
31
- const inputPath = '../TestFiles/';
32
- const outputPath = '../TestFiles/Output/';
33
- try {
34
- // Convert PDF document to HTML with fixed positioning option turned on (default)
35
- console.log('Converting PDF to HTML with fixed positioning option turned on (default)');
36
-
37
- const outputFile = outputPath + 'paragraphs_and_tables_fixed_positioning';
38
-
39
- // Convert PDF to HTML
40
- await PDFNet.Convert.fileToHtml(inputPath + 'paragraphs_and_tables.pdf', outputFile);
41
-
42
- console.log('Result saved in ' + outputFile);
43
- } catch (err) {
44
- console.log(err);
45
- }
46
-
47
- //////////////////////////////////////////////////////////////////////////
48
-
49
- await PDFNet.addResourceSearchPath('../../lib/');
50
-
51
- if (!await PDFNet.PDF2HtmlReflowParagraphsModule.isModuleAvailable())
52
- {
53
- console.log('\nUnable to run part of the sample: PDFTron SDK HTML reflow paragraphs module not available.');
54
- console.log('---------------------------------------------------------------');
55
- console.log('The HTML reflow paragraphs module is an optional add-on, available for download');
56
- console.log('at http://www.pdftron.com/. If you have already downloaded this');
57
- console.log('module, ensure that the SDK is able to find the required files');
58
- console.log('using the PDFNet::AddResourceSearchPath() function.\n');
59
-
60
- return;
61
- }
62
-
63
- //////////////////////////////////////////////////////////////////////////
64
-
65
- try {
66
- // Convert PDF document to HTML with reflow paragraphs option turned on (1)
67
- console.log('Converting PDF to HTML with reflow paragraphs option turned on (1)');
68
-
69
- const outputFile = outputPath + 'paragraphs_and_tables_reflow_paragraphs.html';
70
-
71
- const htmlOutputOptions = new PDFNet.Convert.HTMLOutputOptions();
72
-
73
- // Set e_reflow_paragraphs content reflow setting
74
- htmlOutputOptions.setContentReflowSetting(PDFNet.Convert.HTMLOutputOptions.ContentReflowSetting.e_reflow_paragraphs);
75
-
76
- // Convert PDF to HTML
77
- await PDFNet.Convert.fileToHtml(inputPath + 'paragraphs_and_tables.pdf', outputFile, htmlOutputOptions);
78
-
79
- console.log('Result saved in ' + outputFile);
80
- } catch (err) {
81
- console.log(err);
82
- }
83
-
84
- //////////////////////////////////////////////////////////////////////////
85
-
86
- try {
87
- // Convert PDF document to HTML with reflow paragraphs option turned on (2)
88
- console.log('Converting PDF to HTML with reflow paragraphs option turned on (2)');
89
-
90
- const outputFile = outputPath + 'paragraphs_and_tables_reflow_paragraphs_no_page_width.html';
91
-
92
- const htmlOutputOptions = new PDFNet.Convert.HTMLOutputOptions();
93
-
94
- // Set e_reflow_paragraphs content reflow setting
95
- htmlOutputOptions.setContentReflowSetting(PDFNet.Convert.HTMLOutputOptions.ContentReflowSetting.e_reflow_paragraphs);
96
-
97
- // Set to flow paragraphs across the entire browser window.
98
- htmlOutputOptions.setNoPageWidth(true);
99
-
100
- // Convert PDF to HTML
101
- await PDFNet.Convert.fileToHtml(inputPath + 'paragraphs_and_tables.pdf', outputFile, htmlOutputOptions);
102
-
103
- console.log('Result saved in ' + outputFile);
104
- } catch (err) {
105
- console.log(err);
106
- }
107
-
108
- console.log('Done.');
109
- };
110
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
111
- console.log('Error: ' + JSON.stringify(error));
112
- }).then(function () { return PDFNet.shutdown(); });
113
- };
114
- exports.runPDF2HtmlTest();
115
- })(exports);
116
- // eslint-disable-next-line spaced-comment
117
- //# sourceURL=PDF2HtmlTest.js
1
+ //---------------------------------------------------------------------------------------
2
+ // Copyright (c) 2001-2021 by PDFTron Systems Inc. All Rights Reserved.
3
+ // Consult legal.txt regarding legal and license information.
4
+ //---------------------------------------------------------------------------------------
5
+
6
+ //---------------------------------------------------------------------------------------
7
+ // The following sample illustrates how to use the PDF::Convert utility class to convert
8
+ // documents and files to HTML.
9
+ //
10
+ // There are two HTML modules and one of them is an optional PDFNet Add-on.
11
+ // 1. The built-in HTML module is used to convert PDF documents to fixed-position HTML
12
+ // documents.
13
+ // 2. The optional Structured Output add-on module is used to convert PDF documents to
14
+ // HTML documents with text flowing across the browser window.
15
+ //
16
+ // The PDFTron SDK Structured Output module can be downloaded from
17
+ // https://www.pdftron.com/documentation/core/info/modules/
18
+ //
19
+ // Please contact us if you have any questions.
20
+ //---------------------------------------------------------------------------------------
21
+
22
+ const { PDFNet } = require('@pdftron/pdfnet-node');
23
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
24
+
25
+ ((exports) => {
26
+ 'use strict';
27
+
28
+ exports.runPDF2HtmlTest = () => {
29
+
30
+ const main = async () => {
31
+
32
+ const inputPath = '../TestFiles/';
33
+ const outputPath = '../TestFiles/Output/';
34
+
35
+ //////////////////////////////////////////////////////////////////////////
36
+
37
+ try {
38
+ // Convert PDF document to HTML with fixed positioning option turned on (default)
39
+ console.log('Converting PDF to HTML with fixed positioning option turned on (default)');
40
+
41
+ const outputFile = outputPath + 'paragraphs_and_tables_fixed_positioning';
42
+
43
+ // Convert PDF to HTML
44
+ await PDFNet.Convert.fileToHtml(inputPath + 'paragraphs_and_tables.pdf', outputFile);
45
+
46
+ console.log('Result saved in ' + outputFile);
47
+ } catch (err) {
48
+ console.log(err);
49
+ }
50
+
51
+ //////////////////////////////////////////////////////////////////////////
52
+
53
+ await PDFNet.addResourceSearchPath('../../lib/');
54
+
55
+ if (!await PDFNet.StructuredOutputModule.isModuleAvailable()) {
56
+ console.log('\nUnable to run part of the sample: PDFTron SDK Structured Output module not available.');
57
+ console.log('---------------------------------------------------------------');
58
+ console.log('The Structured Output module is an optional add-on, available for download');
59
+ console.log('at https://www.pdftron.com/documentation/core/info/modules/. If you have already');
60
+ console.log('downloaded this module, ensure that the SDK is able to find the required files');
61
+ console.log('using the PDFNet::AddResourceSearchPath() function.\n');
62
+
63
+ return;
64
+ }
65
+
66
+ //////////////////////////////////////////////////////////////////////////
67
+
68
+ try {
69
+ // Convert PDF document to HTML with reflow full option turned on (1)
70
+ console.log('Converting PDF to HTML with reflow full option turned on (1)');
71
+
72
+ const outputFile = outputPath + 'paragraphs_and_tables_reflow_full.html';
73
+
74
+ const htmlOutputOptions = new PDFNet.Convert.HTMLOutputOptions();
75
+
76
+ // Set e_reflow_full content reflow setting
77
+ htmlOutputOptions.setContentReflowSetting(PDFNet.Convert.HTMLOutputOptions.ContentReflowSetting.e_reflow_full);
78
+
79
+ // Convert PDF to HTML
80
+ await PDFNet.Convert.fileToHtml(inputPath + 'paragraphs_and_tables.pdf', outputFile, htmlOutputOptions);
81
+
82
+ console.log('Result saved in ' + outputFile);
83
+ } catch (err) {
84
+ console.log(err);
85
+ }
86
+
87
+ //////////////////////////////////////////////////////////////////////////
88
+
89
+ try {
90
+ // Convert PDF document to HTML with reflow full option turned on (only converting the first page) (2)
91
+ console.log('Converting PDF to HTML with reflow full option turned on (only converting the first page) (2)');
92
+
93
+ const outputFile = outputPath + 'paragraphs_and_tables_reflow_full_first_page.html';
94
+
95
+ const htmlOutputOptions = new PDFNet.Convert.HTMLOutputOptions();
96
+
97
+ // Set e_reflow_full content reflow setting
98
+ htmlOutputOptions.setContentReflowSetting(PDFNet.Convert.HTMLOutputOptions.ContentReflowSetting.e_reflow_full);
99
+
100
+ // Convert only the first page
101
+ htmlOutputOptions.setPages(1, 1);
102
+
103
+ // Convert PDF to HTML
104
+ await PDFNet.Convert.fileToHtml(inputPath + 'paragraphs_and_tables.pdf', outputFile, htmlOutputOptions);
105
+
106
+ console.log('Result saved in ' + outputFile);
107
+ } catch (err) {
108
+ console.log(err);
109
+ }
110
+
111
+ //////////////////////////////////////////////////////////////////////////
112
+
113
+ console.log('Done.');
114
+ };
115
+
116
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
117
+ console.log('Error: ' + JSON.stringify(error));
118
+ }).then(function () { return PDFNet.shutdown(); });
119
+ };
120
+ exports.runPDF2HtmlTest();
121
+ })(exports);
122
+ // eslint-disable-next-line spaced-comment
123
+ //# sourceURL=PDF2HtmlTest.js
@@ -0,0 +1,158 @@
1
+ //---------------------------------------------------------------------------------------
2
+ // Copyright (c) 2001-2021 by PDFTron Systems Inc. All Rights Reserved.
3
+ // Consult legal.txt regarding legal and license information.
4
+ //---------------------------------------------------------------------------------------
5
+
6
+ //---------------------------------------------------------------------------------------
7
+ // The following sample illustrates how to use the PDF::Convert utility class to convert
8
+ // documents and files to Word, Excel and PowerPoint.
9
+ //
10
+ // The Structured Output module is an optional PDFNet Add-on that can be used to convert PDF
11
+ // and other documents into Word, Excel, PowerPoint and HTML format.
12
+ //
13
+ // The PDFTron SDK Structured Output module can be downloaded from
14
+ // https://www.pdftron.com/documentation/core/info/modules/
15
+ //
16
+ // Please contact us if you have any questions.
17
+ //---------------------------------------------------------------------------------------
18
+
19
+ const { PDFNet } = require('@pdftron/pdfnet-node');
20
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
21
+
22
+ ((exports) => {
23
+ 'use strict';
24
+
25
+ exports.runPDF2OfficeTest = () => {
26
+
27
+ const main = async () => {
28
+
29
+ const inputPath = '../TestFiles/';
30
+ const outputPath = '../TestFiles/Output/';
31
+
32
+ //////////////////////////////////////////////////////////////////////////
33
+
34
+ await PDFNet.addResourceSearchPath('../../lib/');
35
+
36
+ if (!await PDFNet.StructuredOutputModule.isModuleAvailable()) {
37
+ console.log('\nUnable to run the sample: PDFTron SDK Structured Output module not available.');
38
+ console.log('---------------------------------------------------------------');
39
+ console.log('The Structured Output module is an optional add-on, available for download');
40
+ console.log('at https://www.pdftron.com/documentation/core/info/modules/. If you have already');
41
+ console.log('downloaded this module, ensure that the SDK is able to find the required files');
42
+ console.log('using the PDFNet::AddResourceSearchPath() function.\n');
43
+
44
+ return;
45
+ }
46
+
47
+ //////////////////////////////////////////////////////////////////////////
48
+
49
+ try {
50
+ // Convert PDF document to Word
51
+ console.log('Converting PDF to Word');
52
+
53
+ const outputFile = outputPath + 'paragraphs_and_tables.docx';
54
+
55
+ await PDFNet.Convert.fileToWord(inputPath + 'paragraphs_and_tables.pdf', outputFile);
56
+
57
+ console.log('Result saved in ' + outputFile);
58
+ } catch (err) {
59
+ console.log(err);
60
+ }
61
+
62
+ try {
63
+ // Convert PDF document to Word with options
64
+ console.log('Converting PDF to Word with options');
65
+
66
+ const outputFile = outputPath + 'paragraphs_and_tables_first_page.docx';
67
+
68
+ const wordOutputOptions = new PDFNet.Convert.WordOutputOptions();
69
+
70
+ // Convert only the first page
71
+ wordOutputOptions.setPages(1, 1);
72
+
73
+ await PDFNet.Convert.fileToWord(inputPath + 'paragraphs_and_tables.pdf', outputFile, wordOutputOptions);
74
+
75
+ console.log('Result saved in ' + outputFile);
76
+ } catch (err) {
77
+ console.log(err);
78
+ }
79
+
80
+ //////////////////////////////////////////////////////////////////////////
81
+
82
+ try {
83
+ // Convert PDF document to Excel
84
+ console.log('Converting PDF to Excel');
85
+
86
+ const outputFile = outputPath + 'paragraphs_and_tables.xlsx';
87
+
88
+ await PDFNet.Convert.fileToExcel(inputPath + 'paragraphs_and_tables.pdf', outputFile);
89
+
90
+ console.log('Result saved in ' + outputFile);
91
+ } catch (err) {
92
+ console.log(err);
93
+ }
94
+
95
+ try {
96
+ // Convert PDF document to Excel with options
97
+ console.log('Converting PDF to Excel with options');
98
+
99
+ const outputFile = outputPath + 'paragraphs_and_tables_second_page.xlsx';
100
+
101
+ const excelOutputOptions = new PDFNet.Convert.ExcelOutputOptions();
102
+
103
+ // Convert only the second page
104
+ excelOutputOptions.setPages(2, 2);
105
+
106
+ await PDFNet.Convert.fileToExcel(inputPath + 'paragraphs_and_tables.pdf', outputFile, excelOutputOptions);
107
+
108
+ console.log('Result saved in ' + outputFile);
109
+ } catch (err) {
110
+ console.log(err);
111
+ }
112
+
113
+ //////////////////////////////////////////////////////////////////////////
114
+
115
+ try {
116
+ // Convert PDF document to PowerPoint
117
+ console.log('Converting PDF to PowerPoint');
118
+
119
+ const outputFile = outputPath + 'paragraphs_and_tables.pptx';
120
+
121
+ await PDFNet.Convert.fileToPowerPoint(inputPath + 'paragraphs_and_tables.pdf', outputFile);
122
+
123
+ console.log('Result saved in ' + outputFile);
124
+ } catch (err) {
125
+ console.log(err);
126
+ }
127
+
128
+ try {
129
+ // Convert PDF document to PowerPoint with options
130
+ console.log('Converting PDF to PowerPoint with options');
131
+
132
+ const outputFile = outputPath + 'paragraphs_and_tables_first_page.pptx';
133
+
134
+ const powerPointOutputOptions = new PDFNet.Convert.PowerPointOutputOptions();
135
+
136
+ // Convert only the first page
137
+ powerPointOutputOptions.setPages(1, 1);
138
+
139
+ await PDFNet.Convert.fileToPowerPoint(inputPath + 'paragraphs_and_tables.pdf', outputFile, powerPointOutputOptions);
140
+
141
+ console.log('Result saved in ' + outputFile);
142
+ } catch (err) {
143
+ console.log(err);
144
+ }
145
+
146
+ //////////////////////////////////////////////////////////////////////////
147
+
148
+ console.log('Done.');
149
+ };
150
+
151
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
152
+ console.log('Error: ' + JSON.stringify(error));
153
+ }).then(function () { return PDFNet.shutdown(); });
154
+ };
155
+ exports.runPDF2OfficeTest();
156
+ })(exports);
157
+ // eslint-disable-next-line spaced-comment
158
+ //# sourceURL=PDF2OfficeTest.js
@@ -0,0 +1,2 @@
1
+ @echo off
2
+ call node PDF2OfficeTest.js
@@ -0,0 +1,2 @@
1
+ #!/bin/sh
2
+ node PDF2OfficeTest.js
@@ -1,85 +1,85 @@
1
- //---------------------------------------------------------------------------------------
2
- // Copyright (c) 2001-2021 by PDFTron Systems Inc. All Rights Reserved.
3
- // Consult legal.txt regarding legal and license information.
4
- //---------------------------------------------------------------------------------------
5
-
6
- const { PDFNet } = require('@pdftron/pdfnet-node');
7
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
8
-
9
- ((exports) => {
10
-
11
- exports.runPDFA = () => {
12
-
13
- const printResults = async (pdfa, filename) => {
14
-
15
- const errorCount = await pdfa.getErrorCount();
16
- if (errorCount === 0) {
17
- console.log(filename + ': OK.');
18
- } else {
19
- console.log(filename + ' is NOT a valid PDFA.');
20
- for (let i = 0; i < errorCount; i++) {
21
- const errorCode = await pdfa.getError(i);
22
- const errorMsg = await PDFNet.PDFACompliance.getPDFAErrorMessage(errorCode);
23
- console.log(' - e_PDFA ' + errorCode + ': ' + errorMsg + '.');
24
- const numRefs = await pdfa.getRefObjCount(errorCode);
25
- if (numRefs > 0) {
26
- const objs = [];
27
- for (let j = 0; j < numRefs; j++) {
28
- const objRef = await pdfa.getRefObj(errorCode, j);
29
- objs.push(objRef);
30
- }
31
- console.log(' Objects: ' + objs.join(', '));
32
- }
33
- }
34
- console.log('');
35
- }
36
- }
37
-
38
- //---------------------------------------------------------------------------------------
39
- // The following sample illustrates how to parse and check if a PDF document meets the
40
- // PDFA standard, using the PDFACompliance class object.
41
- //---------------------------------------------------------------------------------------
42
- const main = async () => {
43
- const inputPath = '../TestFiles/';
44
- const outputPath = inputPath + 'Output/';
45
- await PDFNet.setColorManagement(); // Enable color management (required for PDFA validation).
46
-
47
- //-----------------------------------------------------------
48
- // Example 1: PDF/A Validation
49
- //-----------------------------------------------------------
50
- try {
51
- const filename = 'newsletter.pdf';
52
- /* The max_ref_objs parameter to the PDFACompliance constructor controls the maximum number
53
- of object numbers that are collected for particular error codes. The default value is 10
54
- in order to prevent spam. If you need all the object numbers, pass 0 for max_ref_objs. */
55
- const pdfa = await PDFNet.PDFACompliance.createFromFile(false, inputPath + filename, '', PDFNet.PDFACompliance.Conformance.e_Level2B);
56
- await printResults(pdfa, filename);
57
- } catch (err) {
58
- console.log(err);
59
- }
60
-
61
- //-----------------------------------------------------------
62
- // Example 2: PDF/A Conversion
63
- //-----------------------------------------------------------
64
- try {
65
- let filename = 'fish.pdf';
66
- const pdfa = await PDFNet.PDFACompliance.createFromFile(true, inputPath + filename, '', PDFNet.PDFACompliance.Conformance.e_Level2B);
67
- filename = 'pdfa.pdf';
68
- await pdfa.saveAsFromFileName(outputPath + filename);
69
-
70
- // Re-validate the document after the conversion...
71
- const comp = await PDFNet.PDFACompliance.createFromFile(false, outputPath + filename, '', PDFNet.PDFACompliance.Conformance.e_Level2B);
72
- await printResults(comp, filename);
73
- } catch (err) {
74
- console.log(err);
75
- }
76
-
77
- console.log('PDFACompliance test completed.')
78
- };
79
-
80
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) { console.log('Error: ' + JSON.stringify(error)); }).then(function () { return PDFNet.shutdown(); });
81
- };
82
- exports.runPDFA();
83
- })(exports);
84
- // eslint-disable-next-line spaced-comment
85
- //# sourceURL=PDFATest.js
1
+ //---------------------------------------------------------------------------------------
2
+ // Copyright (c) 2001-2021 by PDFTron Systems Inc. All Rights Reserved.
3
+ // Consult legal.txt regarding legal and license information.
4
+ //---------------------------------------------------------------------------------------
5
+
6
+ const { PDFNet } = require('@pdftron/pdfnet-node');
7
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
8
+
9
+ ((exports) => {
10
+
11
+ exports.runPDFA = () => {
12
+
13
+ const printResults = async (pdfa, filename) => {
14
+
15
+ const errorCount = await pdfa.getErrorCount();
16
+ if (errorCount === 0) {
17
+ console.log(filename + ': OK.');
18
+ } else {
19
+ console.log(filename + ' is NOT a valid PDFA.');
20
+ for (let i = 0; i < errorCount; i++) {
21
+ const errorCode = await pdfa.getError(i);
22
+ const errorMsg = await PDFNet.PDFACompliance.getPDFAErrorMessage(errorCode);
23
+ console.log(' - e_PDFA ' + errorCode + ': ' + errorMsg + '.');
24
+ const numRefs = await pdfa.getRefObjCount(errorCode);
25
+ if (numRefs > 0) {
26
+ const objs = [];
27
+ for (let j = 0; j < numRefs; j++) {
28
+ const objRef = await pdfa.getRefObj(errorCode, j);
29
+ objs.push(objRef);
30
+ }
31
+ console.log(' Objects: ' + objs.join(', '));
32
+ }
33
+ }
34
+ console.log('');
35
+ }
36
+ }
37
+
38
+ //---------------------------------------------------------------------------------------
39
+ // The following sample illustrates how to parse and check if a PDF document meets the
40
+ // PDFA standard, using the PDFACompliance class object.
41
+ //---------------------------------------------------------------------------------------
42
+ const main = async () => {
43
+ const inputPath = '../TestFiles/';
44
+ const outputPath = inputPath + 'Output/';
45
+ await PDFNet.setColorManagement(); // Enable color management (required for PDFA validation).
46
+
47
+ //-----------------------------------------------------------
48
+ // Example 1: PDF/A Validation
49
+ //-----------------------------------------------------------
50
+ try {
51
+ const filename = 'newsletter.pdf';
52
+ /* The max_ref_objs parameter to the PDFACompliance constructor controls the maximum number
53
+ of object numbers that are collected for particular error codes. The default value is 10
54
+ in order to prevent spam. If you need all the object numbers, pass 0 for max_ref_objs. */
55
+ const pdfa = await PDFNet.PDFACompliance.createFromFile(false, inputPath + filename, '', PDFNet.PDFACompliance.Conformance.e_Level2B);
56
+ await printResults(pdfa, filename);
57
+ } catch (err) {
58
+ console.log(err);
59
+ }
60
+
61
+ //-----------------------------------------------------------
62
+ // Example 2: PDF/A Conversion
63
+ //-----------------------------------------------------------
64
+ try {
65
+ let filename = 'fish.pdf';
66
+ const pdfa = await PDFNet.PDFACompliance.createFromFile(true, inputPath + filename, '', PDFNet.PDFACompliance.Conformance.e_Level2B);
67
+ filename = 'pdfa.pdf';
68
+ await pdfa.saveAsFromFileName(outputPath + filename);
69
+
70
+ // Re-validate the document after the conversion...
71
+ const comp = await PDFNet.PDFACompliance.createFromFile(false, outputPath + filename, '', PDFNet.PDFACompliance.Conformance.e_Level2B);
72
+ await printResults(comp, filename);
73
+ } catch (err) {
74
+ console.log(err);
75
+ }
76
+
77
+ console.log('PDFACompliance test completed.')
78
+ };
79
+
80
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) { console.log('Error: ' + JSON.stringify(error)); }).then(function () { return PDFNet.shutdown(); });
81
+ };
82
+ exports.runPDFA();
83
+ })(exports);
84
+ // eslint-disable-next-line spaced-comment
85
+ //# sourceURL=PDFATest.js