@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,88 +1,88 @@
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
- // This sample illustrates how to use basic SDF API (also known as Cos) to edit an
7
- // existing document.
8
-
9
- const { PDFNet } = require('@pdftron/pdfnet-node');
10
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
11
-
12
- ((exports) => {
13
-
14
- exports.runSDFTest = () => {
15
-
16
- const main = async() => {
17
- // Relative path to the folder containing test files.
18
- const inputPath = '../TestFiles/';
19
-
20
- try {
21
- console.log('Opening the test file...');
22
- // Here we create a SDF/Cos document directly from PDF file. In case you have
23
- // PDFDoc you can always access SDF/Cos document using PDFDoc.GetSDFDoc() method.
24
- const doc = await PDFNet.SDFDoc.createFromFileUString(inputPath + 'fish.pdf');
25
- doc.initSecurityHandler();
26
- console.log('Modifying into dictionary, adding custom properties, embedding a stream...');
27
-
28
- const trailer = await doc.getTrailer(); // Get the trailer
29
-
30
- // Now we will change PDF document information properties using SDF API
31
-
32
- // Get the Info dictionary.
33
-
34
- let itr = await trailer.find('Info');
35
- let info;
36
- if (await itr.hasNext()) {
37
- info = await itr.value();
38
- // Modify 'Producer' entry.
39
- info.putString('Producer', 'PDFTron PDFNet');
40
-
41
- // read title entry if it is present
42
- itr = await info.find('Author');
43
- if (await itr.hasNext()) {
44
- const itrval = await itr.value();
45
- const oldstr = await itrval.getAsPDFText();
46
- info.putText('Author', oldstr + ' - Modified');
47
- } else {
48
- info.putString('Author', 'Me, myself, and I');
49
- }
50
- } else {
51
- // Info dict is missing.
52
- info = await trailer.putDict('Info');
53
- info.putString('Producer', 'PDFTron PDFNet');
54
- info.putString('Title', 'My document');
55
- }
56
-
57
- // Create a custom inline dictionary within Infor dictionary
58
- const customDict = await info.putDict('My Direct Dict');
59
- customDict.putNumber('My Number', 100); // Add some key/value pairs
60
- customDict.putArray('My Array');
61
-
62
- // Create a custom indirect array within Info dictionary
63
- const customArray = await doc.createIndirectArray();
64
- info.put('My Indirect Array', customArray); // Add some entries
65
-
66
- // create indirect link to root
67
- const trailerRoot = await trailer.get('Root');
68
- customArray.pushBack((await trailerRoot.value()));
69
-
70
- // Embed a custom stream (file mystream.txt).
71
- const embedFile = await PDFNet.Filter.createMappedFileFromUString(inputPath + 'my_stream.txt');
72
- const mystm = await PDFNet.FilterReader.create(embedFile);
73
- const indStream = await doc.createIndirectStreamFromFilter(mystm);
74
- customArray.pushBack(indStream);
75
-
76
- console.log('Saving modified test file...');
77
- await doc.save(inputPath + 'Output/sdftest_out.pdf', 0, '%PDF-1.4');
78
- console.log('Test completed.');
79
- } catch (err) {
80
- console.log(err);
81
- }
82
- };
83
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error){console.log('Error: ' + JSON.stringify(error));}).then(function(){return PDFNet.shutdown();});
84
- };
85
- exports.runSDFTest();
86
- })(exports);
87
- // 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
+ // This sample illustrates how to use basic SDF API (also known as Cos) to edit an
7
+ // existing document.
8
+
9
+ const { PDFNet } = require('@pdftron/pdfnet-node');
10
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
11
+
12
+ ((exports) => {
13
+
14
+ exports.runSDFTest = () => {
15
+
16
+ const main = async() => {
17
+ // Relative path to the folder containing test files.
18
+ const inputPath = '../TestFiles/';
19
+
20
+ try {
21
+ console.log('Opening the test file...');
22
+ // Here we create a SDF/Cos document directly from PDF file. In case you have
23
+ // PDFDoc you can always access SDF/Cos document using PDFDoc.GetSDFDoc() method.
24
+ const doc = await PDFNet.SDFDoc.createFromFileUString(inputPath + 'fish.pdf');
25
+ doc.initSecurityHandler();
26
+ console.log('Modifying into dictionary, adding custom properties, embedding a stream...');
27
+
28
+ const trailer = await doc.getTrailer(); // Get the trailer
29
+
30
+ // Now we will change PDF document information properties using SDF API
31
+
32
+ // Get the Info dictionary.
33
+
34
+ let itr = await trailer.find('Info');
35
+ let info;
36
+ if (await itr.hasNext()) {
37
+ info = await itr.value();
38
+ // Modify 'Producer' entry.
39
+ info.putString('Producer', 'PDFTron PDFNet');
40
+
41
+ // read title entry if it is present
42
+ itr = await info.find('Author');
43
+ if (await itr.hasNext()) {
44
+ const itrval = await itr.value();
45
+ const oldstr = await itrval.getAsPDFText();
46
+ info.putText('Author', oldstr + ' - Modified');
47
+ } else {
48
+ info.putString('Author', 'Me, myself, and I');
49
+ }
50
+ } else {
51
+ // Info dict is missing.
52
+ info = await trailer.putDict('Info');
53
+ info.putString('Producer', 'PDFTron PDFNet');
54
+ info.putString('Title', 'My document');
55
+ }
56
+
57
+ // Create a custom inline dictionary within Infor dictionary
58
+ const customDict = await info.putDict('My Direct Dict');
59
+ customDict.putNumber('My Number', 100); // Add some key/value pairs
60
+ customDict.putArray('My Array');
61
+
62
+ // Create a custom indirect array within Info dictionary
63
+ const customArray = await doc.createIndirectArray();
64
+ info.put('My Indirect Array', customArray); // Add some entries
65
+
66
+ // create indirect link to root
67
+ const trailerRoot = await trailer.get('Root');
68
+ customArray.pushBack((await trailerRoot.value()));
69
+
70
+ // Embed a custom stream (file mystream.txt).
71
+ const embedFile = await PDFNet.Filter.createMappedFileFromUString(inputPath + 'my_stream.txt');
72
+ const mystm = await PDFNet.FilterReader.create(embedFile);
73
+ const indStream = await doc.createIndirectStreamFromFilter(mystm);
74
+ customArray.pushBack(indStream);
75
+
76
+ console.log('Saving modified test file...');
77
+ await doc.save(inputPath + 'Output/sdftest_out.pdf', 0, '%PDF-1.4');
78
+ console.log('Test completed.');
79
+ } catch (err) {
80
+ console.log(err);
81
+ }
82
+ };
83
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error){console.log('Error: ' + JSON.stringify(error));}).then(function(){return PDFNet.shutdown();});
84
+ };
85
+ exports.runSDFTest();
86
+ })(exports);
87
+ // eslint-disable-next-line spaced-comment
88
88
  //# sourceURL=SDFTest.js