@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,122 +1,122 @@
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
- const { PDFNet } = require('@pdftron/pdfnet-node');
8
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
9
-
10
- ((exports) => {
11
-
12
- exports.runTextSearchTest = () => {
13
-
14
- const main = async() => {
15
- // Relative path to the folder containing test files.
16
- const inputURL = '../TestFiles/';
17
- const inputFilename = 'credit card numbers.pdf'; // addimage.pdf, newsletter.pdf
18
-
19
- try {
20
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputURL + inputFilename);
21
- doc.initSecurityHandler();
22
-
23
- const txtSearch = await PDFNet.TextSearch.create();
24
- let mode = PDFNet.TextSearch.Mode.e_whole_word + PDFNet.TextSearch.Mode.e_page_stop; // Uses both whole word and page stop
25
- let pattern = 'joHn sMiTh';
26
-
27
- txtSearch.begin(doc, pattern, mode); // searches for the "pattern" in the document while following the inputted modes.
28
-
29
- let step = 0;
30
-
31
- // call Run() iteratively to find all matching instances of the word 'joHn sMiTh'
32
- /* eslint-disable-next-line no-constant-condition */
33
- while (true) {
34
- const result = await txtSearch.run();
35
- let hlts;
36
- if (result.code === PDFNet.TextSearch.ResultCode.e_found) {
37
- if (step === 0) { // Step 0: found "John Smith"
38
- // note that, here, 'ambient_str' and 'highlights' are not written to,
39
- // as 'e_ambient_string' and 'e_highlight' are not set.
40
- console.log(result.out_str + "'s credit card number is: ");
41
-
42
- // now switch to using regular expressions to find John's credit card number
43
- mode = await txtSearch.getMode();
44
- mode += PDFNet.TextSearch.Mode.e_reg_expression + PDFNet.TextSearch.Mode.e_highlight;
45
- txtSearch.setMode(mode);
46
- pattern = '\\d{4}-\\d{4}-\\d{4}-\\d{4}'; // or "(\\d{4}-){3}\\d{4}"
47
- txtSearch.setPattern(pattern);
48
-
49
- ++step;
50
- } else if (step === 1) {
51
- // step 1: found John's credit card number
52
- console.log(' ' + result.out_str);
53
- // note that, here, 'hlts' is written to, as 'e_highlight' has been set.
54
- // output the highlight info of the credit card number.
55
- hlts = result.highlights;
56
- hlts.begin(doc);
57
- while ((await hlts.hasNext())) {
58
- const highlightPageNum = await hlts.getCurrentPageNumber();
59
- console.log('The current highlight is from page: ' + highlightPageNum);
60
- await hlts.next();
61
- }
62
- // see if there is an AMEX card number
63
- pattern = '\\d{4}-\\d{6}-\\d{5}';
64
- txtSearch.setPattern(pattern);
65
-
66
- ++step;
67
- } else if (step === 2) {
68
- // found an AMEX card number
69
- console.log('\nThere is an AMEX card number:\n ' + result.out_str);
70
-
71
- // change mode to find the owner of the credit card; supposedly, the owner's
72
- // name proceeds the number
73
- mode = await txtSearch.getMode();
74
- mode += PDFNet.TextSearch.Mode.e_search_up;
75
- txtSearch.setMode(mode);
76
- pattern = '[A-z]++ [A-z]++';
77
- txtSearch.setPattern(pattern);
78
-
79
- ++step;
80
- } else if (step === 3) {
81
- // found the owner's name of the AMEX card
82
- console.log("Is the owner's name:\n " + result.out_str + '?');
83
-
84
- // add a link annotation based on the location of the found instance
85
- hlts = result.highlights;
86
- await hlts.begin(doc); // is await needed?
87
- while ((await hlts.hasNext())) {
88
- const curPage = await doc.getPage((await hlts.getCurrentPageNumber()));
89
- const quadArr = await hlts.getCurrentQuads();
90
- for (let i = 0; i < quadArr.length; ++i) {
91
- const currQuad = quadArr[i];
92
- const x1 = Math.min(Math.min(Math.min(currQuad.p1x, currQuad.p2x), currQuad.p3x), currQuad.p4x);
93
- const x2 = Math.max(Math.max(Math.max(currQuad.p1x, currQuad.p2x), currQuad.p3x), currQuad.p4x);
94
- const y1 = Math.min(Math.min(Math.min(currQuad.p1y, currQuad.p2y), currQuad.p3y), currQuad.p4y);
95
- const y2 = Math.max(Math.max(Math.max(currQuad.p1y, currQuad.p2y), currQuad.p3y), currQuad.p4y);
96
-
97
- const hyperLink = await PDFNet.LinkAnnot.create(doc, (await PDFNet.Rect.init(x1, y1, x2, y2)));
98
- await hyperLink.setAction((await PDFNet.Action.createURI(doc, 'http://www.pdftron.com')));
99
- await curPage.annotPushBack(hyperLink);
100
- }
101
- hlts.next();
102
- }
103
- await doc.save('../TestFiles/Output/credit card numbers_linked.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
104
- break;
105
- }
106
- } else if (result.code === PDFNet.TextSearch.ResultCode.e_page) {
107
- // you can update your UI here, if needed
108
- console.log('page end');
109
- } else if (result.code === PDFNet.TextSearch.ResultCode.e_done) {
110
- break;
111
- }
112
- }
113
- } catch (err) {
114
- console.log(err);
115
- }
116
- };
117
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error){console.log('Error: ' + JSON.stringify(error));}).then(function(){return PDFNet.shutdown();});
118
- };
119
- exports.runTextSearchTest();
120
- })(exports);
121
- // 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
+ const { PDFNet } = require('@pdftron/pdfnet-node');
8
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
9
+
10
+ ((exports) => {
11
+
12
+ exports.runTextSearchTest = () => {
13
+
14
+ const main = async() => {
15
+ // Relative path to the folder containing test files.
16
+ const inputURL = '../TestFiles/';
17
+ const inputFilename = 'credit card numbers.pdf'; // addimage.pdf, newsletter.pdf
18
+
19
+ try {
20
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputURL + inputFilename);
21
+ doc.initSecurityHandler();
22
+
23
+ const txtSearch = await PDFNet.TextSearch.create();
24
+ let mode = PDFNet.TextSearch.Mode.e_whole_word + PDFNet.TextSearch.Mode.e_page_stop; // Uses both whole word and page stop
25
+ let pattern = 'joHn sMiTh';
26
+
27
+ txtSearch.begin(doc, pattern, mode); // searches for the "pattern" in the document while following the inputted modes.
28
+
29
+ let step = 0;
30
+
31
+ // call Run() iteratively to find all matching instances of the word 'joHn sMiTh'
32
+ /* eslint-disable-next-line no-constant-condition */
33
+ while (true) {
34
+ const result = await txtSearch.run();
35
+ let hlts;
36
+ if (result.code === PDFNet.TextSearch.ResultCode.e_found) {
37
+ if (step === 0) { // Step 0: found "John Smith"
38
+ // note that, here, 'ambient_str' and 'highlights' are not written to,
39
+ // as 'e_ambient_string' and 'e_highlight' are not set.
40
+ console.log(result.out_str + "'s credit card number is: ");
41
+
42
+ // now switch to using regular expressions to find John's credit card number
43
+ mode = await txtSearch.getMode();
44
+ mode += PDFNet.TextSearch.Mode.e_reg_expression + PDFNet.TextSearch.Mode.e_highlight;
45
+ txtSearch.setMode(mode);
46
+ pattern = '\\d{4}-\\d{4}-\\d{4}-\\d{4}'; // or "(\\d{4}-){3}\\d{4}"
47
+ txtSearch.setPattern(pattern);
48
+
49
+ ++step;
50
+ } else if (step === 1) {
51
+ // step 1: found John's credit card number
52
+ console.log(' ' + result.out_str);
53
+ // note that, here, 'hlts' is written to, as 'e_highlight' has been set.
54
+ // output the highlight info of the credit card number.
55
+ hlts = result.highlights;
56
+ hlts.begin(doc);
57
+ while ((await hlts.hasNext())) {
58
+ const highlightPageNum = await hlts.getCurrentPageNumber();
59
+ console.log('The current highlight is from page: ' + highlightPageNum);
60
+ await hlts.next();
61
+ }
62
+ // see if there is an AMEX card number
63
+ pattern = '\\d{4}-\\d{6}-\\d{5}';
64
+ txtSearch.setPattern(pattern);
65
+
66
+ ++step;
67
+ } else if (step === 2) {
68
+ // found an AMEX card number
69
+ console.log('\nThere is an AMEX card number:\n ' + result.out_str);
70
+
71
+ // change mode to find the owner of the credit card; supposedly, the owner's
72
+ // name proceeds the number
73
+ mode = await txtSearch.getMode();
74
+ mode += PDFNet.TextSearch.Mode.e_search_up;
75
+ txtSearch.setMode(mode);
76
+ pattern = '[A-z]++ [A-z]++';
77
+ txtSearch.setPattern(pattern);
78
+
79
+ ++step;
80
+ } else if (step === 3) {
81
+ // found the owner's name of the AMEX card
82
+ console.log("Is the owner's name:\n " + result.out_str + '?');
83
+
84
+ // add a link annotation based on the location of the found instance
85
+ hlts = result.highlights;
86
+ await hlts.begin(doc); // is await needed?
87
+ while ((await hlts.hasNext())) {
88
+ const curPage = await doc.getPage((await hlts.getCurrentPageNumber()));
89
+ const quadArr = await hlts.getCurrentQuads();
90
+ for (let i = 0; i < quadArr.length; ++i) {
91
+ const currQuad = quadArr[i];
92
+ const x1 = Math.min(Math.min(Math.min(currQuad.p1x, currQuad.p2x), currQuad.p3x), currQuad.p4x);
93
+ const x2 = Math.max(Math.max(Math.max(currQuad.p1x, currQuad.p2x), currQuad.p3x), currQuad.p4x);
94
+ const y1 = Math.min(Math.min(Math.min(currQuad.p1y, currQuad.p2y), currQuad.p3y), currQuad.p4y);
95
+ const y2 = Math.max(Math.max(Math.max(currQuad.p1y, currQuad.p2y), currQuad.p3y), currQuad.p4y);
96
+
97
+ const hyperLink = await PDFNet.LinkAnnot.create(doc, (await PDFNet.Rect.init(x1, y1, x2, y2)));
98
+ await hyperLink.setAction((await PDFNet.Action.createURI(doc, 'http://www.pdftron.com')));
99
+ await curPage.annotPushBack(hyperLink);
100
+ }
101
+ hlts.next();
102
+ }
103
+ await doc.save('../TestFiles/Output/credit card numbers_linked.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
104
+ break;
105
+ }
106
+ } else if (result.code === PDFNet.TextSearch.ResultCode.e_page) {
107
+ // you can update your UI here, if needed
108
+ console.log('page end');
109
+ } else if (result.code === PDFNet.TextSearch.ResultCode.e_done) {
110
+ break;
111
+ }
112
+ }
113
+ } catch (err) {
114
+ console.log(err);
115
+ }
116
+ };
117
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error){console.log('Error: ' + JSON.stringify(error));}).then(function(){return PDFNet.shutdown();});
118
+ };
119
+ exports.runTextSearchTest();
120
+ })(exports);
121
+ // eslint-disable-next-line spaced-comment
122
122
  //# sourceURL=TextSearchTest.js
@@ -1,105 +1,105 @@
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
- 'use strict';
11
-
12
- exports.runU3DTest = () => {
13
- const input_path = '../TestFiles/';
14
-
15
- const create3DAnnotation = async (doc, annots) => {
16
- // ---------------------------------------------------------------------------------
17
- // Create a 3D annotation based on U3D content. PDF 1.6 introduces the capability
18
- // for collections of three-dimensional objects, such as those used by CAD software,
19
- // to be embedded in PDF files.
20
- const link_3D = await doc.createIndirectDict();
21
- link_3D.putName('Subtype', '3D');
22
-
23
- // Annotation location on the page
24
- const link_3D_rect = await PDFNet.Rect.init(25, 180, 585, 643);
25
- link_3D.putRect('Rect', link_3D_rect.x1, link_3D_rect.y1,
26
- link_3D_rect.x2, link_3D_rect.y2);
27
- annots.pushBack(link_3D);
28
-
29
- // The 3DA entry is an activation dictionary (see Table 9.34 in the PDF Reference Manual)
30
- // that determines how the state of the annotation and its associated artwork can change.
31
- const activation_dict_3D = await link_3D.putDict('3DA');
32
-
33
- // Set the annotation so that it is activated as soon as the page containing the
34
- // annotation is opened. Other options are: PV (page view) and XA (explicit) activation.
35
- activation_dict_3D.putName('A', 'PO');
36
-
37
- // Embed U3D Streams (3D Model/Artwork).
38
- const u3d_file = await PDFNet.Filter.createMappedFileFromUString(input_path + 'dice.u3d');
39
- const u3d_reader = await PDFNet.FilterReader.create(u3d_file);
40
-
41
- // To embed 3D stream without compression, you can omit the second parameter in CreateIndirectStream.
42
- const flateEncode = await PDFNet.Filter.createFlateEncode();
43
- const u3d_data_dict = await doc.createIndirectStreamFromFilter(u3d_reader, flateEncode);
44
- u3d_data_dict.putName('Subtype', 'U3D');
45
- link_3D.put('3DD', u3d_data_dict);
46
-
47
- // Set the initial view of the 3D artwork that should be used when the annotation is activated.
48
- const view3D_dict = await link_3D.putDict('3DV');
49
- view3D_dict.putString('IN', 'Unnamed');
50
- view3D_dict.putString('XN', 'Default');
51
- view3D_dict.putName('MS', 'M');
52
- view3D_dict.putNumber('CO', 27.5);
53
-
54
- // A 12-element 3D transformation matrix that specifies a position and orientation
55
- // of the camera in world coordinates.
56
- const tr3d = await view3D_dict.putArray('C2W');
57
- tr3d.pushBackNumber(1); tr3d.pushBackNumber(0); tr3d.pushBackNumber(0);
58
- tr3d.pushBackNumber(0); tr3d.pushBackNumber(0); tr3d.pushBackNumber(-1);
59
- tr3d.pushBackNumber(0); tr3d.pushBackNumber(1); tr3d.pushBackNumber(0);
60
- tr3d.pushBackNumber(0); tr3d.pushBackNumber(-27.5); tr3d.pushBackNumber(0);
61
-
62
- // Create annotation appearance stream, a thumbnail which is used during printing or
63
- // in PDF processors that do not understand 3D data.
64
- const ap_dict = await link_3D.putDict('AP');
65
-
66
- const builder = await PDFNet.ElementBuilder.create();
67
- const writer = await PDFNet.ElementWriter.create();
68
-
69
- writer.begin(doc);
70
-
71
- const thumb_pathname = input_path + 'dice.jpg';
72
- const image = await PDFNet.Image.createFromFile(doc, thumb_pathname);
73
- writer.writePlacedElement(await builder.createImageScaled(image, 0.0, 0.0, await link_3D_rect.width(), await link_3D_rect.height()));
74
-
75
- const normal_ap_stream = await writer.end();
76
- normal_ap_stream.putName('Subtype', 'Form');
77
- normal_ap_stream.putRect('BBox', 0, 0, await link_3D_rect.width(), await link_3D_rect.height());
78
- ap_dict.put('N', normal_ap_stream);
79
- }
80
-
81
- const main = async () => {
82
- const output_path = '../TestFiles/Output/';
83
-
84
- try {
85
- const doc = await PDFNet.PDFDoc.create();
86
- const page = await doc.pageCreate();
87
- doc.pagePushBack(page);
88
- const annots = await doc.createIndirectArray();
89
- page.getSDFObj().then(sdf => sdf.put('Annots', annots));
90
-
91
- await create3DAnnotation(doc, annots);
92
- doc.save(output_path + 'dice_u3d.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
93
- console.log('Done');
94
- } catch (err) {
95
- console.log(err);
96
- }
97
- }
98
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error) {
99
- console.log('Error: ' + JSON.stringify(error));
100
- }).then(function(){ return PDFNet.shutdown(); });
101
- };
102
- exports.runU3DTest();
103
- })(exports);
104
- // 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 { PDFNet } = require('@pdftron/pdfnet-node');
7
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
8
+
9
+ ((exports) => {
10
+ 'use strict';
11
+
12
+ exports.runU3DTest = () => {
13
+ const input_path = '../TestFiles/';
14
+
15
+ const create3DAnnotation = async (doc, annots) => {
16
+ // ---------------------------------------------------------------------------------
17
+ // Create a 3D annotation based on U3D content. PDF 1.6 introduces the capability
18
+ // for collections of three-dimensional objects, such as those used by CAD software,
19
+ // to be embedded in PDF files.
20
+ const link_3D = await doc.createIndirectDict();
21
+ link_3D.putName('Subtype', '3D');
22
+
23
+ // Annotation location on the page
24
+ const link_3D_rect = await PDFNet.Rect.init(25, 180, 585, 643);
25
+ link_3D.putRect('Rect', link_3D_rect.x1, link_3D_rect.y1,
26
+ link_3D_rect.x2, link_3D_rect.y2);
27
+ annots.pushBack(link_3D);
28
+
29
+ // The 3DA entry is an activation dictionary (see Table 9.34 in the PDF Reference Manual)
30
+ // that determines how the state of the annotation and its associated artwork can change.
31
+ const activation_dict_3D = await link_3D.putDict('3DA');
32
+
33
+ // Set the annotation so that it is activated as soon as the page containing the
34
+ // annotation is opened. Other options are: PV (page view) and XA (explicit) activation.
35
+ activation_dict_3D.putName('A', 'PO');
36
+
37
+ // Embed U3D Streams (3D Model/Artwork).
38
+ const u3d_file = await PDFNet.Filter.createMappedFileFromUString(input_path + 'dice.u3d');
39
+ const u3d_reader = await PDFNet.FilterReader.create(u3d_file);
40
+
41
+ // To embed 3D stream without compression, you can omit the second parameter in CreateIndirectStream.
42
+ const flateEncode = await PDFNet.Filter.createFlateEncode();
43
+ const u3d_data_dict = await doc.createIndirectStreamFromFilter(u3d_reader, flateEncode);
44
+ u3d_data_dict.putName('Subtype', 'U3D');
45
+ link_3D.put('3DD', u3d_data_dict);
46
+
47
+ // Set the initial view of the 3D artwork that should be used when the annotation is activated.
48
+ const view3D_dict = await link_3D.putDict('3DV');
49
+ view3D_dict.putString('IN', 'Unnamed');
50
+ view3D_dict.putString('XN', 'Default');
51
+ view3D_dict.putName('MS', 'M');
52
+ view3D_dict.putNumber('CO', 27.5);
53
+
54
+ // A 12-element 3D transformation matrix that specifies a position and orientation
55
+ // of the camera in world coordinates.
56
+ const tr3d = await view3D_dict.putArray('C2W');
57
+ tr3d.pushBackNumber(1); tr3d.pushBackNumber(0); tr3d.pushBackNumber(0);
58
+ tr3d.pushBackNumber(0); tr3d.pushBackNumber(0); tr3d.pushBackNumber(-1);
59
+ tr3d.pushBackNumber(0); tr3d.pushBackNumber(1); tr3d.pushBackNumber(0);
60
+ tr3d.pushBackNumber(0); tr3d.pushBackNumber(-27.5); tr3d.pushBackNumber(0);
61
+
62
+ // Create annotation appearance stream, a thumbnail which is used during printing or
63
+ // in PDF processors that do not understand 3D data.
64
+ const ap_dict = await link_3D.putDict('AP');
65
+
66
+ const builder = await PDFNet.ElementBuilder.create();
67
+ const writer = await PDFNet.ElementWriter.create();
68
+
69
+ writer.begin(doc);
70
+
71
+ const thumb_pathname = input_path + 'dice.jpg';
72
+ const image = await PDFNet.Image.createFromFile(doc, thumb_pathname);
73
+ writer.writePlacedElement(await builder.createImageScaled(image, 0.0, 0.0, await link_3D_rect.width(), await link_3D_rect.height()));
74
+
75
+ const normal_ap_stream = await writer.end();
76
+ normal_ap_stream.putName('Subtype', 'Form');
77
+ normal_ap_stream.putRect('BBox', 0, 0, await link_3D_rect.width(), await link_3D_rect.height());
78
+ ap_dict.put('N', normal_ap_stream);
79
+ }
80
+
81
+ const main = async () => {
82
+ const output_path = '../TestFiles/Output/';
83
+
84
+ try {
85
+ const doc = await PDFNet.PDFDoc.create();
86
+ const page = await doc.pageCreate();
87
+ doc.pagePushBack(page);
88
+ const annots = await doc.createIndirectArray();
89
+ page.getSDFObj().then(sdf => sdf.put('Annots', annots));
90
+
91
+ await create3DAnnotation(doc, annots);
92
+ doc.save(output_path + 'dice_u3d.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
93
+ console.log('Done');
94
+ } catch (err) {
95
+ console.log(err);
96
+ }
97
+ }
98
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function(error) {
99
+ console.log('Error: ' + JSON.stringify(error));
100
+ }).then(function(){ return PDFNet.shutdown(); });
101
+ };
102
+ exports.runU3DTest();
103
+ })(exports);
104
+ // eslint-disable-next-line spaced-comment
105
105
  //# sourceURL=U3DTest.js