@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,85 +1,85 @@
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
- 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-2024 by Apryse Software 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,85 +1,85 @@
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
- const fs = require('fs');
7
- const { PDFNet } = require('@pdftron/pdfnet-node');
8
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
9
-
10
- ((exports) => {
11
- 'use strict';
12
-
13
- exports.runPDFDocMemoryTest = () => {
14
- const main = async () => {
15
- const outputPath = '../TestFiles/Output/';
16
-
17
- // The following sample illustrates how to read/write a PDF document from/to
18
- // a memory buffer. This is useful for applications that work with dynamic PDF
19
- // documents that don't need to be saved/read from a disk.
20
- try {
21
- // Read a PDF document in a memory buffer.
22
- const file = await PDFNet.Filter.createMappedFileFromUString('../TestFiles/tiger.pdf');
23
- const file_sz = await file.mappedFileFileSize();
24
-
25
- const file_reader = await PDFNet.FilterReader.create(file);
26
-
27
- const mem = await file_reader.read(file_sz);
28
- const doc = await PDFNet.PDFDoc.createFromBuffer(mem);
29
-
30
- doc.initSecurityHandler();
31
- const num_pages = await doc.getPageCount();
32
-
33
- const writer = await PDFNet.ElementWriter.create();
34
- const reader = await PDFNet.ElementReader.create();
35
-
36
- // Create a duplicate of every page but copy only path objects
37
- for (let i = 1; i <= num_pages; ++i) {
38
- const itr = await doc.getPageIterator(2 * i - 1);
39
-
40
- const cur_page = await itr.current();
41
- reader.beginOnPage(cur_page);
42
- const new_page = await doc.pageCreate(await cur_page.getMediaBox());
43
- itr.next();
44
- doc.pageInsert(itr, new_page);
45
-
46
- writer.beginOnPage(new_page);
47
- var element;
48
- while (element = await reader.next()) { // Read page contents
49
- writer.writeElement(element);
50
- }
51
-
52
- await writer.end();
53
- await reader.end();
54
- }
55
-
56
- doc.save(outputPath + 'doc_memory_edit.pdf', PDFNet.SDFDoc.SaveOptions.e_remove_unused);
57
-
58
- // Save the document to a memory buffer.
59
- const docbuf = await doc.saveMemoryBuffer(PDFNet.SDFDoc.SaveOptions.e_remove_unused);
60
-
61
- // Write the contents of the buffer to the disk
62
- fs.appendFileSync(outputPath + 'doc_memory_edit.txt', docbuf);
63
-
64
- let dataStr = ''
65
- // Read some data from the file stored in memory
66
- reader.beginOnPage(await doc.getPage(1));
67
- while (element = await reader.next()) {
68
- if (await element.getType() == PDFNet.Element.Type.e_path) dataStr += 'Path, ';
69
- }
70
- reader.end();
71
- console.log(dataStr);
72
-
73
- console.log('\nDone. Result saved in doc_memory_edit.pdf and doc_memory_edit.txt ...');
74
- } catch (err) {
75
- console.log(err);
76
- }
77
- }
78
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error) {
79
- console.log('Error: ' + JSON.stringify(error));
80
- }).then(function(){ return PDFNet.shutdown(); });
81
- };
82
- exports.runPDFDocMemoryTest();
83
- })(exports);
84
- // 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
+ const fs = require('fs');
7
+ const { PDFNet } = require('@pdftron/pdfnet-node');
8
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
9
+
10
+ ((exports) => {
11
+ 'use strict';
12
+
13
+ exports.runPDFDocMemoryTest = () => {
14
+ const main = async () => {
15
+ const outputPath = '../TestFiles/Output/';
16
+
17
+ // The following sample illustrates how to read/write a PDF document from/to
18
+ // a memory buffer. This is useful for applications that work with dynamic PDF
19
+ // documents that don't need to be saved/read from a disk.
20
+ try {
21
+ // Read a PDF document in a memory buffer.
22
+ const file = await PDFNet.Filter.createMappedFileFromUString('../TestFiles/tiger.pdf');
23
+ const file_sz = await file.mappedFileFileSize();
24
+
25
+ const file_reader = await PDFNet.FilterReader.create(file);
26
+
27
+ const mem = await file_reader.read(file_sz);
28
+ const doc = await PDFNet.PDFDoc.createFromBuffer(mem);
29
+
30
+ doc.initSecurityHandler();
31
+ const num_pages = await doc.getPageCount();
32
+
33
+ const writer = await PDFNet.ElementWriter.create();
34
+ const reader = await PDFNet.ElementReader.create();
35
+
36
+ // Create a duplicate of every page but copy only path objects
37
+ for (let i = 1; i <= num_pages; ++i) {
38
+ const itr = await doc.getPageIterator(2 * i - 1);
39
+
40
+ const cur_page = await itr.current();
41
+ reader.beginOnPage(cur_page);
42
+ const new_page = await doc.pageCreate(await cur_page.getMediaBox());
43
+ itr.next();
44
+ doc.pageInsert(itr, new_page);
45
+
46
+ writer.beginOnPage(new_page);
47
+ var element;
48
+ while (element = await reader.next()) { // Read page contents
49
+ writer.writeElement(element);
50
+ }
51
+
52
+ await writer.end();
53
+ await reader.end();
54
+ }
55
+
56
+ doc.save(outputPath + 'doc_memory_edit.pdf', PDFNet.SDFDoc.SaveOptions.e_remove_unused);
57
+
58
+ // Save the document to a memory buffer.
59
+ const docbuf = await doc.saveMemoryBuffer(PDFNet.SDFDoc.SaveOptions.e_remove_unused);
60
+
61
+ // Write the contents of the buffer to the disk
62
+ fs.appendFileSync(outputPath + 'doc_memory_edit.txt', docbuf);
63
+
64
+ let dataStr = ''
65
+ // Read some data from the file stored in memory
66
+ reader.beginOnPage(await doc.getPage(1));
67
+ while (element = await reader.next()) {
68
+ if (await element.getType() == PDFNet.Element.Type.e_path) dataStr += 'Path, ';
69
+ }
70
+ reader.end();
71
+ console.log(dataStr);
72
+
73
+ console.log('\nDone. Result saved in doc_memory_edit.pdf and doc_memory_edit.txt ...');
74
+ } catch (err) {
75
+ console.log(err);
76
+ }
77
+ }
78
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error) {
79
+ console.log('Error: ' + JSON.stringify(error));
80
+ }).then(function(){ return PDFNet.shutdown(); });
81
+ };
82
+ exports.runPDFDocMemoryTest();
83
+ })(exports);
84
+ // eslint-disable-next-line spaced-comment
85
85
  //# sourceURL=PDFDocMemoryTest.js