@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,136 +1,136 @@
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
- // The following sample illustrates how to convert PDF, XPS, image, MS Office, and
8
- // other image document formats to XOD.
9
- //
10
- // Certain file formats such as PDF, generic XPS, EMF, and raster image formats can
11
- // be directly converted to XOD. Other formats such as MS Office
12
- // (Word, Excel, Publisher, Powerpoint, etc) can be directly converted via interop.
13
- // These types of conversions guarantee optimal output, while preserving important
14
- // information such as document metadata, intra document links and hyper-links,
15
- // bookmarks etc.
16
- //
17
- // In case there is no direct conversion available, PDFNet can still convert from
18
- // any printable document to XOD using a virtual printer driver. To check
19
- // if a virtual printer is required use Convert::RequiresPrinter(filename). In this
20
- // case the installing application must be run as administrator. The manifest for this
21
- // sample specifies appropriate the UAC elevation. The administrator privileges are
22
- // not required for direct or interop conversions.
23
- //
24
- // Please note that PDFNet Publisher (i.e. 'pdftron.PDF.Convert.ToXod') is an
25
- // optionally licensable add-on to PDFNet Core SDK. For details, please see
26
- // http://www.pdftron.com/webviewer/licensing.html.
27
- //---------------------------------------------------------------------------------------
28
-
29
- const { PDFNet } = require('@pdftron/pdfnet-node');
30
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
31
-
32
- ((exports) => {
33
- 'use strict';
34
-
35
- exports.runWebViewerConvertTest = () => {
36
- const inputPath = '../TestFiles/';
37
- const outputPath = inputPath + 'Output/';
38
- const main = async () => {
39
- try {
40
- // Sample 1:
41
- // Directly convert from PDF to XOD.
42
- await PDFNet.Convert.fileToXod(inputPath + 'newsletter.pdf', outputPath + 'from_pdf.xod');
43
-
44
- // Sample 2:
45
- // Directly convert from generic XPS to XOD.
46
- await PDFNet.Convert.fileToXod(inputPath + 'simple-xps.xps', outputPath + 'from_xps.xod');
47
-
48
- // Sample 3:
49
- // Convert from MS Office (does not require printer driver for Office 2007+)
50
- // and other document formats to XOD.
51
- await bulkConvertRandomFilesToXod();
52
- } catch (err) {
53
- console.log(err.stack);
54
- }
55
- };
56
-
57
- let Testfile = function (inputFile, outputFile, requiresWindowsPlatform) {
58
- this.inputFile = inputFile;
59
- this.outputFile = outputFile;
60
- this.requiresWindowsPlatform = requiresWindowsPlatform;
61
- }
62
-
63
- const testfiles = [
64
- new Testfile('simple-powerpoint_2007.pptx', 'simple-powerpoint_2007.xod', true),
65
- new Testfile('simple-word_2007.docx', 'simple-word_2007.xod', true),
66
- new Testfile('butterfly.png', 'butterfly.xod', false),
67
- new Testfile('numbered.pdf', 'numbered.xod', false),
68
- new Testfile('dice.jpg', 'dice.xod', false),
69
- new Testfile('simple-xps.xps', 'simple-xps.xod', false),
70
- ]
71
-
72
- const bulkConvertRandomFilesToXod = async () => {
73
- let err = 0;
74
- if (process.platform === 'win32') {
75
- if (await PDFNet.Convert.printerIsInstalled('PDFTron PDFNet')) {
76
- await PDFNet.Convert.printerSetPrinterName('PDFTron PDFNet');
77
- } else if (!(await PDFNet.Convert.printerIsInstalled())) {
78
- try {
79
- // This will fail if not run as administrator. Harmless if PDFNet
80
- // printer already installed
81
- console.log('Installing printer (requires Windows platform and administrator)');
82
- await PDFNet.Convert.printerUninstall();
83
- console.log('Installed printer ' + await PDFNet.Convert.printerGetPrinterName());
84
- } catch (exp) {
85
- console.log('Unable to install printer');
86
- }
87
- }
88
- }
89
-
90
- for (const testfile of testfiles)
91
- {
92
- if (process.platform !== 'win32' && testfile.requiresWindowsPlatform) {
93
- continue;
94
- }
95
- try {
96
- const inputFile = inputPath + testfile.inputFile;
97
- const outputFile = outputPath + testfile.outputFile;
98
- if (await PDFNet.Convert.requiresPrinter(inputFile)) {
99
- console.log('Using PDFNet printer to convert file ' + testfile.inputFile);
100
- }
101
- await PDFNet.Convert.fileToXod(inputFile, outputFile);
102
- console.log('Converted file: ' + testfile.inputFile + ' to: ' + testfile.outputFile);
103
- } catch (exp) {
104
- console.log('Unable to convert file ' + testfile.inputFile);
105
- console.log(exp);
106
- err = 1;
107
- }
108
- }
109
-
110
- if (err) {
111
- console.log('ConvertFile failed');
112
- } else {
113
- console.log('ConvertFile succeeded');
114
- }
115
-
116
- if (process.platform === 'win32' && await PDFNet.Convert.printerIsInstalled()) {
117
- try {
118
- console.log('Uninstalling printer (requires Windows platform and administrator)');
119
- await PDFNet.Convert.printerUninstall();
120
- console.log('Uninstalled Printer ' + await PDFNet.Convert.printerGetPrinterName());
121
- }
122
- catch (exp)
123
- {
124
- console.log('Unable to uninstall printer');
125
- }
126
- }
127
- }
128
-
129
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
130
- console.log('Error: ' + JSON.stringify(error));
131
- }).then(function () { return PDFNet.shutdown(); });
132
- };
133
- exports.runWebViewerConvertTest();
134
- })(exports);
135
- // 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
+ // The following sample illustrates how to convert PDF, XPS, image, MS Office, and
8
+ // other image document formats to XOD.
9
+ //
10
+ // Certain file formats such as PDF, generic XPS, EMF, and raster image formats can
11
+ // be directly converted to XOD. Other formats such as MS Office
12
+ // (Word, Excel, Publisher, Powerpoint, etc) can be directly converted via interop.
13
+ // These types of conversions guarantee optimal output, while preserving important
14
+ // information such as document metadata, intra document links and hyper-links,
15
+ // bookmarks etc.
16
+ //
17
+ // In case there is no direct conversion available, PDFNet can still convert from
18
+ // any printable document to XOD using a virtual printer driver. To check
19
+ // if a virtual printer is required use Convert::RequiresPrinter(filename). In this
20
+ // case the installing application must be run as administrator. The manifest for this
21
+ // sample specifies appropriate the UAC elevation. The administrator privileges are
22
+ // not required for direct or interop conversions.
23
+ //
24
+ // Please note that PDFNet Publisher (i.e. 'pdftron.PDF.Convert.ToXod') is an
25
+ // optionally licensable add-on to PDFNet Core SDK. For details, please see
26
+ // http://www.pdftron.com/webviewer/licensing.html.
27
+ //---------------------------------------------------------------------------------------
28
+
29
+ const { PDFNet } = require('@pdftron/pdfnet-node');
30
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
31
+
32
+ ((exports) => {
33
+ 'use strict';
34
+
35
+ exports.runWebViewerConvertTest = () => {
36
+ const inputPath = '../TestFiles/';
37
+ const outputPath = inputPath + 'Output/';
38
+ const main = async () => {
39
+ try {
40
+ // Sample 1:
41
+ // Directly convert from PDF to XOD.
42
+ await PDFNet.Convert.fileToXod(inputPath + 'newsletter.pdf', outputPath + 'from_pdf.xod');
43
+
44
+ // Sample 2:
45
+ // Directly convert from generic XPS to XOD.
46
+ await PDFNet.Convert.fileToXod(inputPath + 'simple-xps.xps', outputPath + 'from_xps.xod');
47
+
48
+ // Sample 3:
49
+ // Convert from MS Office (does not require printer driver for Office 2007+)
50
+ // and other document formats to XOD.
51
+ await bulkConvertRandomFilesToXod();
52
+ } catch (err) {
53
+ console.log(err.stack);
54
+ }
55
+ };
56
+
57
+ let Testfile = function (inputFile, outputFile, requiresWindowsPlatform) {
58
+ this.inputFile = inputFile;
59
+ this.outputFile = outputFile;
60
+ this.requiresWindowsPlatform = requiresWindowsPlatform;
61
+ }
62
+
63
+ const testfiles = [
64
+ new Testfile('simple-powerpoint_2007.pptx', 'simple-powerpoint_2007.xod', true),
65
+ new Testfile('simple-word_2007.docx', 'simple-word_2007.xod', true),
66
+ new Testfile('butterfly.png', 'butterfly.xod', false),
67
+ new Testfile('numbered.pdf', 'numbered.xod', false),
68
+ new Testfile('dice.jpg', 'dice.xod', false),
69
+ new Testfile('simple-xps.xps', 'simple-xps.xod', false),
70
+ ]
71
+
72
+ const bulkConvertRandomFilesToXod = async () => {
73
+ let err = 0;
74
+ if (process.platform === 'win32') {
75
+ if (await PDFNet.Convert.printerIsInstalled('PDFTron PDFNet')) {
76
+ await PDFNet.Convert.printerSetPrinterName('PDFTron PDFNet');
77
+ } else if (!(await PDFNet.Convert.printerIsInstalled())) {
78
+ try {
79
+ // This will fail if not run as administrator. Harmless if PDFNet
80
+ // printer already installed
81
+ console.log('Installing printer (requires Windows platform and administrator)');
82
+ await PDFNet.Convert.printerUninstall();
83
+ console.log('Installed printer ' + await PDFNet.Convert.printerGetPrinterName());
84
+ } catch (exp) {
85
+ console.log('Unable to install printer');
86
+ }
87
+ }
88
+ }
89
+
90
+ for (const testfile of testfiles)
91
+ {
92
+ if (process.platform !== 'win32' && testfile.requiresWindowsPlatform) {
93
+ continue;
94
+ }
95
+ try {
96
+ const inputFile = inputPath + testfile.inputFile;
97
+ const outputFile = outputPath + testfile.outputFile;
98
+ if (await PDFNet.Convert.requiresPrinter(inputFile)) {
99
+ console.log('Using PDFNet printer to convert file ' + testfile.inputFile);
100
+ }
101
+ await PDFNet.Convert.fileToXod(inputFile, outputFile);
102
+ console.log('Converted file: ' + testfile.inputFile + ' to: ' + testfile.outputFile);
103
+ } catch (exp) {
104
+ console.log('Unable to convert file ' + testfile.inputFile);
105
+ console.log(exp);
106
+ err = 1;
107
+ }
108
+ }
109
+
110
+ if (err) {
111
+ console.log('ConvertFile failed');
112
+ } else {
113
+ console.log('ConvertFile succeeded');
114
+ }
115
+
116
+ if (process.platform === 'win32' && await PDFNet.Convert.printerIsInstalled()) {
117
+ try {
118
+ console.log('Uninstalling printer (requires Windows platform and administrator)');
119
+ await PDFNet.Convert.printerUninstall();
120
+ console.log('Uninstalled Printer ' + await PDFNet.Convert.printerGetPrinterName());
121
+ }
122
+ catch (exp)
123
+ {
124
+ console.log('Unable to uninstall printer');
125
+ }
126
+ }
127
+ }
128
+
129
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
130
+ console.log('Error: ' + JSON.stringify(error));
131
+ }).then(function () { return PDFNet.shutdown(); });
132
+ };
133
+ exports.runWebViewerConvertTest();
134
+ })(exports);
135
+ // eslint-disable-next-line spaced-comment
136
136
  //# sourceURL=WebViewerConvertTest.js
@@ -1,12 +1,12 @@
1
- @echo off
2
- for /D %%s in (*Test) do (
3
- if exist %%s\%%~nxs.js (
4
- cd %%s
5
- echo %%s running...
6
- call node %%~nxs.js
7
- cd ..
8
- echo %%s finished.
9
- pause
10
- )
11
- )
12
- echo All tests finished.
1
+ @echo off
2
+ for /D %%s in (*Test) do (
3
+ if exist %%s\%%~nxs.js (
4
+ cd %%s
5
+ echo %%s running...
6
+ call node %%~nxs.js
7
+ cd ..
8
+ echo %%s finished.
9
+ pause
10
+ )
11
+ )
12
+ echo All tests finished.
package/samples/runall.sh CHANGED
@@ -1,15 +1,15 @@
1
- #!/bin/sh
2
-
3
- for SAMPLE in *Test
4
- do
5
- if [ -d $SAMPLE ] && [ -e $SAMPLE/$SAMPLE.js ]
6
- then
7
- cd $SAMPLE
8
- echo "$SAMPLE running"
9
- node $SAMPLE.js
10
- cd ..
11
- echo "$SAMPLE finished. Press enter to continue..."
12
- read -p "$*" a
13
- fi
14
- done
15
- echo "All tests finished."
1
+ #!/bin/sh
2
+
3
+ for SAMPLE in *Test
4
+ do
5
+ if [ -d $SAMPLE ] && [ -e $SAMPLE/$SAMPLE.js ]
6
+ then
7
+ cd $SAMPLE
8
+ echo "$SAMPLE running"
9
+ node $SAMPLE.js
10
+ cd ..
11
+ echo "$SAMPLE finished. Press enter to continue..."
12
+ read -p "$*" a
13
+ fi
14
+ done
15
+ echo "All tests finished."