@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,220 +1,220 @@
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 sample code illustrates how to read and edit existing outline items and create
8
- // new bookmarks using the high-level API.
9
- //-----------------------------------------------------------------------------------------
10
-
11
- const { PDFNet } = require('@pdftron/pdfnet-node');
12
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
13
-
14
- ((exports) => {
15
-
16
- exports.runBookmarkTest = () => {
17
-
18
- const getIndent = async (item) => {
19
- const ident = (await item.getIndent()) - 1;
20
- let str = '';
21
- for (let i = 0; i < ident; ++i) {
22
- str += ' ';
23
- }
24
- return str;
25
- };
26
-
27
- // Prints out the outline tree to the standard output
28
- const printOutlineTree = async (item) => {
29
- for (; item != null; item = await item.getNext()) {
30
- const indentString = await getIndent(item);
31
- const titleString = await item.getTitle();
32
-
33
- const actionString = indentString + (await item.isOpen() ? '- ' : '+ ') + titleString + ' ACTION -> ';
34
-
35
- // Print Action
36
- const action = await item.getAction();
37
- if (await action.isValid()) {
38
- const actionType = await action.getType();
39
- if (actionType === PDFNet.Action.Type.e_GoTo) {
40
- const dest = await action.getDest();
41
- if (await dest.isValid()) {
42
- const page = await dest.getPage();
43
- console.log(actionString + 'GoTo Page #' + (await page.getIndex()));
44
- }
45
- } else {
46
- console.log(actionString + 'Not a "GoTo" action');
47
- }
48
- } else {
49
- console.log(actionString + 'NULL');
50
- }
51
-
52
- if (await item.hasChildren()) {
53
- await printOutlineTree(await item.getFirstChild());
54
- }
55
- }
56
- };
57
-
58
- const main = async () => {
59
- // Relative path to the folder containing test files.
60
- const inputPath = '../TestFiles/';
61
- const outputPath = inputPath + 'Output/';
62
-
63
- // The following example illustrates how to create and edit the outline tree
64
- // using high-level Bookmark methods.
65
- try {
66
- let doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'numbered.pdf');
67
- doc.initSecurityHandler();
68
-
69
- // Lets first create the root bookmark items.
70
- const red = await PDFNet.Bookmark.create(doc, 'Red');
71
- const green = await PDFNet.Bookmark.create(doc, 'Green');
72
- const blue = await PDFNet.Bookmark.create(doc, 'Blue');
73
-
74
- doc.addRootBookmark(red);
75
- doc.addRootBookmark(green);
76
- doc.addRootBookmark(blue);
77
-
78
- // You can also add new root bookmarks using Bookmark.addNext("...")
79
- blue.addNewNext('foo');
80
- blue.addNewNext('bar');
81
-
82
- // We can now associate new bookmarks with page destinations:
83
-
84
- // The following example creates an 'explicit' destination (see
85
- // section '8.2.1 Destinations' in PDF Reference for more details)
86
- const redIter = await doc.getPageIterator(1);
87
- const redCurrpage = await redIter.current();
88
- const redDest = await PDFNet.Destination.createFit(redCurrpage);
89
- red.setAction(await PDFNet.Action.createGoto(redDest));
90
-
91
- // Create an explicit destination to the first green page in the document
92
- const tenthPage = await doc.getPage(10);
93
- const greenDest = await PDFNet.Destination.createFit(tenthPage);
94
- green.setAction(await PDFNet.Action.createGoto(greenDest));
95
-
96
- // The following example creates a 'named' destination (see
97
- // section '8.2.1 Destinations' in PDF Reference for more details)
98
- // Named destinations have certain advantages over explicit destinations.
99
- const key = 'blue1';
100
- const nineteenthPage = await doc.getPage(19);
101
- const blueDest = await PDFNet.Destination.createFit(nineteenthPage);
102
- const blueAction = await PDFNet.Action.createGotoWithKey(key, blueDest); // TODO FIND FIX
103
-
104
- blue.setAction(blueAction);
105
-
106
- // We can now add children Bookmarks subRed1 instanceof Promise
107
- const subRed1 = await red.addNewChild('Red - Page 1');
108
- subRed1.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(1))));
109
- const subRed2 = await red.addNewChild('Red - Page 2');
110
- subRed2.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(2))));
111
- const subRed3 = await red.addNewChild('Red - Page 3');
112
- subRed3.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(3))));
113
- const subRed4 = await subRed3.addNewChild('Red - Page 4');
114
- subRed4.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(4))));
115
- const subRed5 = await subRed3.addNewChild('Red - Page 5');
116
- subRed5.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(5))));
117
- const subRed6 = await subRed3.addNewChild('Red - Page 6');
118
- subRed6.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(6))));
119
-
120
- // Example of how to find and delete a bookmark by title text.
121
- const firstbookmark = await doc.getFirstBookmark();
122
- const foo = await firstbookmark.find('foo');
123
- if (await foo.isValid()) {
124
- foo.delete();
125
- } else {
126
- console.log('Bookmark foo is invalid');
127
- }
128
- const bar = await firstbookmark.find('bar');
129
- if (await bar.isValid()) {
130
- bar.delete();
131
- } else {
132
- console.log('Bookmark bar is invalid');
133
- }
134
-
135
- // Adding color to Bookmarks. Color and other formatting can help readers
136
- // get around more easily in large PDF documents.
137
- red.setColor(1, 0, 0);
138
- green.setColor(0, 1, 0);
139
- green.setFlags(2); // set bold font
140
- blue.setColor(0, 0, 1);
141
- blue.setFlags(3); // set bold and italic
142
-
143
- await doc.save(outputPath + 'bookmark.pdf', 0);
144
- console.log('Done. Result saved in bookmark.pdf');
145
- } catch (err) {
146
- console.log(err);
147
- }
148
-
149
- // The following example illustrates how to traverse the outline tree using
150
- // Bookmark navigation methods: Bookmark.getNext(), Bookmark.getPrev(),
151
- // Bookmark.getFirstChild () and Bookmark.getLastChild ().
152
- try {
153
- // Open the document that was saved in the previous code sample
154
- const doc = await PDFNet.PDFDoc.createFromFilePath(outputPath + 'bookmark.pdf');
155
- doc.initSecurityHandler();
156
-
157
- const root = await doc.getFirstBookmark();
158
- await printOutlineTree(root);
159
-
160
- console.log('Done.');
161
- } catch (err) {
162
- console.log(err);
163
- }
164
-
165
- // The following example illustrates how to create a Bookmark to a page
166
- // in a remote document. A remote go-to action is similar to an ordinary
167
- // go-to action, but jumps to a destination in another PDF file instead
168
- // of the current file. See Section 8.5.3 'Remote Go-To Actions' in PDF
169
- // Reference Manual for details.
170
-
171
- try {
172
- // Open the document that was saved in the previous code sample
173
- const doc = await PDFNet.PDFDoc.createFromFilePath(outputPath + 'bookmark.pdf');
174
- doc.initSecurityHandler();
175
-
176
- // Create file specification (the file referred to by the remote bookmark)
177
- const fileSpec = await doc.createIndirectDict();
178
- fileSpec.putName('Type', 'Filespec');
179
- fileSpec.putString('F', 'bookmark.pdf');
180
- const spec = await PDFNet.FileSpec.createFromObj(fileSpec);
181
- const gotoRemote = await PDFNet.Action.createGotoRemoteSetNewWindow(spec, 5, true);
182
-
183
- const remoteBookmark1 = await PDFNet.Bookmark.create(doc, 'REMOTE BOOKMARK 1');
184
- remoteBookmark1.setAction(gotoRemote);
185
- doc.addRootBookmark(remoteBookmark1);
186
-
187
- // Create another remote bookmark, but this time using the low-level SDF/Cos API.
188
- // Create a remote action
189
- const remoteBookmark2 = await PDFNet.Bookmark.create(doc, 'REMOTE BOOKMARK 2');
190
- doc.addRootBookmark(remoteBookmark2);
191
-
192
- const gotoR = await (await remoteBookmark2.getSDFObj()).putDict('A');
193
- {
194
- gotoR.putName('S', 'GoToR'); // Set action type
195
- gotoR.putBool('NewWindow', true);
196
-
197
- // Set the file specification
198
- gotoR.put('F', fileSpec);
199
-
200
- // jump to the first page. Note that pages are indexed from 0.
201
- const dest = await gotoR.putArray('D');
202
- dest.pushBackNumber(9);
203
- dest.pushBackName('Fit');
204
- }
205
-
206
- await doc.save(inputPath + 'Output/bookmark_remote.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
207
-
208
- console.log('Done. Result saved in bookmark_remote.pdf');
209
- } catch (err) {
210
- console.log(err);
211
- }
212
- };
213
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
214
- console.log('Error: ' + JSON.stringify(error));
215
- }).then(function () { return PDFNet.shutdown(); });
216
- };
217
- exports.runBookmarkTest();
218
- })(exports);
219
- // 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 sample code illustrates how to read and edit existing outline items and create
8
+ // new bookmarks using the high-level API.
9
+ //-----------------------------------------------------------------------------------------
10
+
11
+ const { PDFNet } = require('@pdftron/pdfnet-node');
12
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
13
+
14
+ ((exports) => {
15
+
16
+ exports.runBookmarkTest = () => {
17
+
18
+ const getIndent = async (item) => {
19
+ const ident = (await item.getIndent()) - 1;
20
+ let str = '';
21
+ for (let i = 0; i < ident; ++i) {
22
+ str += ' ';
23
+ }
24
+ return str;
25
+ };
26
+
27
+ // Prints out the outline tree to the standard output
28
+ const printOutlineTree = async (item) => {
29
+ for (; item != null; item = await item.getNext()) {
30
+ const indentString = await getIndent(item);
31
+ const titleString = await item.getTitle();
32
+
33
+ const actionString = indentString + (await item.isOpen() ? '- ' : '+ ') + titleString + ' ACTION -> ';
34
+
35
+ // Print Action
36
+ const action = await item.getAction();
37
+ if (await action.isValid()) {
38
+ const actionType = await action.getType();
39
+ if (actionType === PDFNet.Action.Type.e_GoTo) {
40
+ const dest = await action.getDest();
41
+ if (await dest.isValid()) {
42
+ const page = await dest.getPage();
43
+ console.log(actionString + 'GoTo Page #' + (await page.getIndex()));
44
+ }
45
+ } else {
46
+ console.log(actionString + 'Not a "GoTo" action');
47
+ }
48
+ } else {
49
+ console.log(actionString + 'NULL');
50
+ }
51
+
52
+ if (await item.hasChildren()) {
53
+ await printOutlineTree(await item.getFirstChild());
54
+ }
55
+ }
56
+ };
57
+
58
+ const main = async () => {
59
+ // Relative path to the folder containing test files.
60
+ const inputPath = '../TestFiles/';
61
+ const outputPath = inputPath + 'Output/';
62
+
63
+ // The following example illustrates how to create and edit the outline tree
64
+ // using high-level Bookmark methods.
65
+ try {
66
+ let doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'numbered.pdf');
67
+ doc.initSecurityHandler();
68
+
69
+ // Lets first create the root bookmark items.
70
+ const red = await PDFNet.Bookmark.create(doc, 'Red');
71
+ const green = await PDFNet.Bookmark.create(doc, 'Green');
72
+ const blue = await PDFNet.Bookmark.create(doc, 'Blue');
73
+
74
+ doc.addRootBookmark(red);
75
+ doc.addRootBookmark(green);
76
+ doc.addRootBookmark(blue);
77
+
78
+ // You can also add new root bookmarks using Bookmark.addNext("...")
79
+ blue.addNewNext('foo');
80
+ blue.addNewNext('bar');
81
+
82
+ // We can now associate new bookmarks with page destinations:
83
+
84
+ // The following example creates an 'explicit' destination (see
85
+ // section '8.2.1 Destinations' in PDF Reference for more details)
86
+ const redIter = await doc.getPageIterator(1);
87
+ const redCurrpage = await redIter.current();
88
+ const redDest = await PDFNet.Destination.createFit(redCurrpage);
89
+ red.setAction(await PDFNet.Action.createGoto(redDest));
90
+
91
+ // Create an explicit destination to the first green page in the document
92
+ const tenthPage = await doc.getPage(10);
93
+ const greenDest = await PDFNet.Destination.createFit(tenthPage);
94
+ green.setAction(await PDFNet.Action.createGoto(greenDest));
95
+
96
+ // The following example creates a 'named' destination (see
97
+ // section '8.2.1 Destinations' in PDF Reference for more details)
98
+ // Named destinations have certain advantages over explicit destinations.
99
+ const key = 'blue1';
100
+ const nineteenthPage = await doc.getPage(19);
101
+ const blueDest = await PDFNet.Destination.createFit(nineteenthPage);
102
+ const blueAction = await PDFNet.Action.createGotoWithKey(key, blueDest); // TODO FIND FIX
103
+
104
+ blue.setAction(blueAction);
105
+
106
+ // We can now add children Bookmarks subRed1 instanceof Promise
107
+ const subRed1 = await red.addNewChild('Red - Page 1');
108
+ subRed1.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(1))));
109
+ const subRed2 = await red.addNewChild('Red - Page 2');
110
+ subRed2.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(2))));
111
+ const subRed3 = await red.addNewChild('Red - Page 3');
112
+ subRed3.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(3))));
113
+ const subRed4 = await subRed3.addNewChild('Red - Page 4');
114
+ subRed4.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(4))));
115
+ const subRed5 = await subRed3.addNewChild('Red - Page 5');
116
+ subRed5.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(5))));
117
+ const subRed6 = await subRed3.addNewChild('Red - Page 6');
118
+ subRed6.setAction(await PDFNet.Action.createGoto(await PDFNet.Destination.createFit(await doc.getPage(6))));
119
+
120
+ // Example of how to find and delete a bookmark by title text.
121
+ const firstbookmark = await doc.getFirstBookmark();
122
+ const foo = await firstbookmark.find('foo');
123
+ if (await foo.isValid()) {
124
+ foo.delete();
125
+ } else {
126
+ console.log('Bookmark foo is invalid');
127
+ }
128
+ const bar = await firstbookmark.find('bar');
129
+ if (await bar.isValid()) {
130
+ bar.delete();
131
+ } else {
132
+ console.log('Bookmark bar is invalid');
133
+ }
134
+
135
+ // Adding color to Bookmarks. Color and other formatting can help readers
136
+ // get around more easily in large PDF documents.
137
+ red.setColor(1, 0, 0);
138
+ green.setColor(0, 1, 0);
139
+ green.setFlags(2); // set bold font
140
+ blue.setColor(0, 0, 1);
141
+ blue.setFlags(3); // set bold and italic
142
+
143
+ await doc.save(outputPath + 'bookmark.pdf', 0);
144
+ console.log('Done. Result saved in bookmark.pdf');
145
+ } catch (err) {
146
+ console.log(err);
147
+ }
148
+
149
+ // The following example illustrates how to traverse the outline tree using
150
+ // Bookmark navigation methods: Bookmark.getNext(), Bookmark.getPrev(),
151
+ // Bookmark.getFirstChild () and Bookmark.getLastChild ().
152
+ try {
153
+ // Open the document that was saved in the previous code sample
154
+ const doc = await PDFNet.PDFDoc.createFromFilePath(outputPath + 'bookmark.pdf');
155
+ doc.initSecurityHandler();
156
+
157
+ const root = await doc.getFirstBookmark();
158
+ await printOutlineTree(root);
159
+
160
+ console.log('Done.');
161
+ } catch (err) {
162
+ console.log(err);
163
+ }
164
+
165
+ // The following example illustrates how to create a Bookmark to a page
166
+ // in a remote document. A remote go-to action is similar to an ordinary
167
+ // go-to action, but jumps to a destination in another PDF file instead
168
+ // of the current file. See Section 8.5.3 'Remote Go-To Actions' in PDF
169
+ // Reference Manual for details.
170
+
171
+ try {
172
+ // Open the document that was saved in the previous code sample
173
+ const doc = await PDFNet.PDFDoc.createFromFilePath(outputPath + 'bookmark.pdf');
174
+ doc.initSecurityHandler();
175
+
176
+ // Create file specification (the file referred to by the remote bookmark)
177
+ const fileSpec = await doc.createIndirectDict();
178
+ fileSpec.putName('Type', 'Filespec');
179
+ fileSpec.putString('F', 'bookmark.pdf');
180
+ const spec = await PDFNet.FileSpec.createFromObj(fileSpec);
181
+ const gotoRemote = await PDFNet.Action.createGotoRemoteSetNewWindow(spec, 5, true);
182
+
183
+ const remoteBookmark1 = await PDFNet.Bookmark.create(doc, 'REMOTE BOOKMARK 1');
184
+ remoteBookmark1.setAction(gotoRemote);
185
+ doc.addRootBookmark(remoteBookmark1);
186
+
187
+ // Create another remote bookmark, but this time using the low-level SDF/Cos API.
188
+ // Create a remote action
189
+ const remoteBookmark2 = await PDFNet.Bookmark.create(doc, 'REMOTE BOOKMARK 2');
190
+ doc.addRootBookmark(remoteBookmark2);
191
+
192
+ const gotoR = await (await remoteBookmark2.getSDFObj()).putDict('A');
193
+ {
194
+ gotoR.putName('S', 'GoToR'); // Set action type
195
+ gotoR.putBool('NewWindow', true);
196
+
197
+ // Set the file specification
198
+ gotoR.put('F', fileSpec);
199
+
200
+ // jump to the first page. Note that pages are indexed from 0.
201
+ const dest = await gotoR.putArray('D');
202
+ dest.pushBackNumber(9);
203
+ dest.pushBackName('Fit');
204
+ }
205
+
206
+ await doc.save(inputPath + 'Output/bookmark_remote.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
207
+
208
+ console.log('Done. Result saved in bookmark_remote.pdf');
209
+ } catch (err) {
210
+ console.log(err);
211
+ }
212
+ };
213
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
214
+ console.log('Error: ' + JSON.stringify(error));
215
+ }).then(function () { return PDFNet.shutdown(); });
216
+ };
217
+ exports.runBookmarkTest();
218
+ })(exports);
219
+ // eslint-disable-next-line spaced-comment
220
220
  //# sourceURL=BookmarkTest.js
@@ -1,80 +1,80 @@
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
- //---------------------------------------------------------------------------------------
8
- // The following sample illustrates how to convert CAD documents to PDF format
9
- //
10
- // The CAD module is an optional PDFNet Add-on that can be used to convert CAD
11
- // documents into PDF documents
12
- //
13
- // The Apryse SDK CAD module can be downloaded from http://www.pdftron.com/
14
- //---------------------------------------------------------------------------------------
15
-
16
-
17
- const { PDFNet } = require('@pdftron/pdfnet-node');
18
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
19
-
20
- ((exports) => {
21
- 'use strict';
22
-
23
- exports.runCAD2PDFTest = () => {
24
- const IsRVTFile = function (inputFile) {
25
- let rvt_input = false;
26
- if (inputFile.length > 2) {
27
- if (inputFile.substr(inputFile.length - 3, 3) === 'rvt') {
28
- rvt_input = true;
29
- }
30
- }
31
- return rvt_input;
32
- }
33
-
34
- const main = async () => {
35
- try {
36
- await PDFNet.addResourceSearchPath('../../lib/');
37
- if (!(await PDFNet.CADModule.isModuleAvailable())) {
38
- console.log('\nUnable to run CAD2PDFTest: Apryse SDK CAD module not available.');
39
- console.log('---------------------------------------------------------------');
40
- console.log('The CAD module is an optional add-on, available for download');
41
- console.log('at http://www.pdftron.com/. If you have already downloaded this');
42
- console.log('module, ensure that the SDK is able to find the required files');
43
- console.log('using the PDFNet.addResourceSearchPath() function.\n');
44
-
45
- return;
46
- }
47
-
48
- // Relative path to the folder containing test files.
49
- const inputPath = '../TestFiles/CAD/';
50
- const outputPath = '../TestFiles/Output/';
51
-
52
- const input_file_name = 'construction drawings color-28.05.18.dwg';
53
- const output_file_name = 'construction drawings color-28.05.18.pdf';
54
-
55
- const doc = await PDFNet.PDFDoc.create();
56
- doc.initSecurityHandler();
57
-
58
- if (IsRVTFile(input_file_name)) {
59
- const opts = new PDFNet.Convert.CADConvertOptions();
60
- opts.setPageWidth(800);
61
- opts.setPageHeight(600);
62
- opts.setRasterDPI(150);
63
- await PDFNet.Convert.fromCAD(doc, inputPath + input_file_name, opts);
64
- } else {
65
- await PDFNet.Convert.fromCAD(doc, inputPath + input_file_name);
66
- }
67
- const outputFile = outputPath + output_file_name;
68
- await doc.save(outputFile, PDFNet.SDFDoc.SaveOptions.e_linearized);
69
- } catch (err) {
70
- console.log(err);
71
- }
72
- };
73
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error) {
74
- console.log('Error: ' + JSON.stringify(error));
75
- }).then(function(){ return PDFNet.shutdown(); });
76
- };
77
- exports.runCAD2PDFTest();
78
- })(exports);
79
- // 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
+ //---------------------------------------------------------------------------------------
8
+ // The following sample illustrates how to convert CAD documents to PDF format
9
+ //
10
+ // The CAD module is an optional PDFNet Add-on that can be used to convert CAD
11
+ // documents into PDF documents
12
+ //
13
+ // The Apryse SDK CAD module can be downloaded from http://www.pdftron.com/
14
+ //---------------------------------------------------------------------------------------
15
+
16
+
17
+ const { PDFNet } = require('@pdftron/pdfnet-node');
18
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
19
+
20
+ ((exports) => {
21
+ 'use strict';
22
+
23
+ exports.runCAD2PDFTest = () => {
24
+ const IsRVTFile = function (inputFile) {
25
+ let rvt_input = false;
26
+ if (inputFile.length > 2) {
27
+ if (inputFile.substr(inputFile.length - 3, 3) === 'rvt') {
28
+ rvt_input = true;
29
+ }
30
+ }
31
+ return rvt_input;
32
+ }
33
+
34
+ const main = async () => {
35
+ try {
36
+ await PDFNet.addResourceSearchPath('../../lib/');
37
+ if (!(await PDFNet.CADModule.isModuleAvailable())) {
38
+ console.log('\nUnable to run CAD2PDFTest: Apryse SDK CAD module not available.');
39
+ console.log('---------------------------------------------------------------');
40
+ console.log('The CAD module is an optional add-on, available for download');
41
+ console.log('at http://www.pdftron.com/. If you have already downloaded this');
42
+ console.log('module, ensure that the SDK is able to find the required files');
43
+ console.log('using the PDFNet.addResourceSearchPath() function.\n');
44
+
45
+ return;
46
+ }
47
+
48
+ // Relative path to the folder containing test files.
49
+ const inputPath = '../TestFiles/CAD/';
50
+ const outputPath = '../TestFiles/Output/';
51
+
52
+ const input_file_name = 'construction drawings color-28.05.18.dwg';
53
+ const output_file_name = 'construction drawings color-28.05.18.pdf';
54
+
55
+ const doc = await PDFNet.PDFDoc.create();
56
+ doc.initSecurityHandler();
57
+
58
+ if (IsRVTFile(input_file_name)) {
59
+ const opts = new PDFNet.Convert.CADConvertOptions();
60
+ opts.setPageWidth(800);
61
+ opts.setPageHeight(600);
62
+ opts.setRasterDPI(150);
63
+ await PDFNet.Convert.fromCAD(doc, inputPath + input_file_name, opts);
64
+ } else {
65
+ await PDFNet.Convert.fromCAD(doc, inputPath + input_file_name);
66
+ }
67
+ const outputFile = outputPath + output_file_name;
68
+ await doc.save(outputFile, PDFNet.SDFDoc.SaveOptions.e_linearized);
69
+ } catch (err) {
70
+ console.log(err);
71
+ }
72
+ };
73
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error) {
74
+ console.log('Error: ' + JSON.stringify(error));
75
+ }).then(function(){ return PDFNet.shutdown(); });
76
+ };
77
+ exports.runCAD2PDFTest();
78
+ })(exports);
79
+ // eslint-disable-next-line spaced-comment
80
80
  //# sourceURL=CAD2PDFTest.js