@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,125 +1,125 @@
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 use the PDF::Convert utility class
8
- // to convert MS Office files to PDF
9
- //
10
- // This conversion is performed entirely within the PDFNet and has *no*
11
- // external or system dependencies dependencies -- Conversion results will be
12
- // the same whether on Windows, Linux or Android.
13
- //
14
- // Please contact us if you have any questions.
15
- //------------------------------------------------------------------------------
16
-
17
- const { PDFNet } = require('@pdftron/pdfnet-node');
18
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
19
-
20
- ((exports) => {
21
- 'use strict';
22
-
23
- exports.runOfficeToPDF = () => {
24
-
25
- const inputPath = '../TestFiles/';
26
- const outputPath = inputPath + 'Output/';
27
-
28
- const simpleDocxConvert = async (inputFilename, outputFilename) => {
29
- // perform the conversion with no optional parameters
30
- const pdfdoc = await PDFNet.Convert.officeToPdfWithPath(inputPath + inputFilename);
31
-
32
- // save the result
33
- await pdfdoc.save(outputPath + outputFilename, PDFNet.SDFDoc.SaveOptions.e_linearized);
34
-
35
- // And we're done!
36
- console.log('Saved ' + outputFilename);
37
- }
38
-
39
- const flexibleDocxConvert = async (inputFilename, outputFilename) => {
40
- // Start with a PDFDoc (the conversion destination)
41
- const pdfdoc = await PDFNet.PDFDoc.create();
42
- pdfdoc.initSecurityHandler();
43
-
44
- const options = new PDFNet.Convert.OfficeToPDFOptions();
45
-
46
- // set up smart font substitutions to improve conversion results
47
- // in situations where the original fonts are not available
48
- options.setSmartSubstitutionPluginPath(inputPath);
49
-
50
- // create a conversion object -- this sets things up but does not yet
51
- // perform any conversion logic.
52
- // in a multithreaded environment, this object can be used to monitor
53
- // the conversion progress and potentially cancel it as well
54
- const conversion = await PDFNet.Convert.streamingPdfConversionWithPdfAndPath(
55
- pdfdoc, inputPath + inputFilename, options);
56
-
57
- // Print the progress of the conversion.
58
- /*
59
- console.log('Status: ' + await conversion.getProgress() * 100 + '%, '
60
- + await conversion.getProgressLabel());
61
- */
62
-
63
- // actually perform the conversion
64
- // this particular method will not throw on conversion failure, but will
65
- // return an error status instead
66
-
67
- while (await conversion.getConversionStatus() === PDFNet.DocumentConversion.Result.e_Incomplete) {
68
- await conversion.convertNextPage();
69
- // print out the progress status as we go
70
- /*
71
- console.log('Status: ' + await conversion.getProgress() * 100 + '%, '
72
- + await conversion.getProgressLabel());
73
- */
74
- }
75
-
76
- if (await conversion.getConversionStatus() === PDFNet.DocumentConversion.Result.e_Success) {
77
- const num_warnings = await conversion.getNumWarnings();
78
-
79
- // print information about the conversion
80
- for (let i = 0; i < num_warnings; ++i) {
81
- console.log('Conversion Warning: ' + await conversion.getWarningString(i));
82
- }
83
-
84
- // save the result
85
- await pdfdoc.save(outputPath + outputFilename, PDFNet.SDFDoc.SaveOptions.e_linearized);
86
- // done
87
- console.log('Saved ' + outputFilename);
88
- }
89
- else {
90
- console.log('Encountered an error during conversion: '
91
- + await conversion.getErrorString());
92
- }
93
- }
94
-
95
-
96
- const main = async () => {
97
-
98
- PDFNet.addResourceSearchPath('../Resources');
99
-
100
- try {
101
- // first the one-line conversion function
102
- await simpleDocxConvert('Fishermen.docx', 'Fishermen.pdf');
103
-
104
- // then the more flexible line-by-line conversion API
105
- await flexibleDocxConvert('the_rime_of_the_ancient_mariner.docx',
106
- 'the_rime_of_the_ancient_mariner.pdf');
107
-
108
- // conversion of RTL content
109
- await flexibleDocxConvert('factsheet_Arabic.docx', 'factsheet_Arabic.pdf');
110
- } catch (err) {
111
- console.log(err);
112
- }
113
-
114
- console.log('Done.');
115
- };
116
-
117
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
118
- console.log('Error: ' + JSON.stringify(error));
119
- }).then(function () { return PDFNet.shutdown(); });
120
-
121
- };
122
- exports.runOfficeToPDF();
123
- })(exports);
124
- // eslint-disable-next-line spaced-comment
125
- //# sourceURL=OfficeToPDFTest.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
+ //------------------------------------------------------------------------------
7
+ // The following sample illustrates how to use the PDF::Convert utility class
8
+ // to convert MS Office files to PDF
9
+ //
10
+ // This conversion is performed entirely within the PDFNet and has *no*
11
+ // external or system dependencies dependencies -- Conversion results will be
12
+ // the same whether on Windows, Linux or Android.
13
+ //
14
+ // Please contact us if you have any questions.
15
+ //------------------------------------------------------------------------------
16
+
17
+ const { PDFNet } = require('@pdftron/pdfnet-node');
18
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
19
+
20
+ ((exports) => {
21
+ 'use strict';
22
+
23
+ exports.runOfficeToPDF = () => {
24
+
25
+ const inputPath = '../TestFiles/';
26
+ const outputPath = inputPath + 'Output/';
27
+
28
+ const simpleDocxConvert = async (inputFilename, outputFilename) => {
29
+ // perform the conversion with no optional parameters
30
+ const pdfdoc = await PDFNet.Convert.officeToPdfWithPath(inputPath + inputFilename);
31
+
32
+ // save the result
33
+ await pdfdoc.save(outputPath + outputFilename, PDFNet.SDFDoc.SaveOptions.e_linearized);
34
+
35
+ // And we're done!
36
+ console.log('Saved ' + outputFilename);
37
+ }
38
+
39
+ const flexibleDocxConvert = async (inputFilename, outputFilename) => {
40
+ // Start with a PDFDoc (the conversion destination)
41
+ const pdfdoc = await PDFNet.PDFDoc.create();
42
+ pdfdoc.initSecurityHandler();
43
+
44
+ const options = new PDFNet.Convert.OfficeToPDFOptions();
45
+
46
+ // set up smart font substitutions to improve conversion results
47
+ // in situations where the original fonts are not available
48
+ options.setSmartSubstitutionPluginPath(inputPath);
49
+
50
+ // create a conversion object -- this sets things up but does not yet
51
+ // perform any conversion logic.
52
+ // in a multithreaded environment, this object can be used to monitor
53
+ // the conversion progress and potentially cancel it as well
54
+ const conversion = await PDFNet.Convert.streamingPdfConversionWithPdfAndPath(
55
+ pdfdoc, inputPath + inputFilename, options);
56
+
57
+ // Print the progress of the conversion.
58
+ /*
59
+ console.log('Status: ' + await conversion.getProgress() * 100 + '%, '
60
+ + await conversion.getProgressLabel());
61
+ */
62
+
63
+ // actually perform the conversion
64
+ // this particular method will not throw on conversion failure, but will
65
+ // return an error status instead
66
+
67
+ while (await conversion.getConversionStatus() === PDFNet.DocumentConversion.Result.e_Incomplete) {
68
+ await conversion.convertNextPage();
69
+ // print out the progress status as we go
70
+ /*
71
+ console.log('Status: ' + await conversion.getProgress() * 100 + '%, '
72
+ + await conversion.getProgressLabel());
73
+ */
74
+ }
75
+
76
+ if (await conversion.getConversionStatus() === PDFNet.DocumentConversion.Result.e_Success) {
77
+ const num_warnings = await conversion.getNumWarnings();
78
+
79
+ // print information about the conversion
80
+ for (let i = 0; i < num_warnings; ++i) {
81
+ console.log('Conversion Warning: ' + await conversion.getWarningString(i));
82
+ }
83
+
84
+ // save the result
85
+ await pdfdoc.save(outputPath + outputFilename, PDFNet.SDFDoc.SaveOptions.e_linearized);
86
+ // done
87
+ console.log('Saved ' + outputFilename);
88
+ }
89
+ else {
90
+ console.log('Encountered an error during conversion: '
91
+ + await conversion.getErrorString());
92
+ }
93
+ }
94
+
95
+
96
+ const main = async () => {
97
+
98
+ PDFNet.addResourceSearchPath('../Resources');
99
+
100
+ try {
101
+ // first the one-line conversion function
102
+ await simpleDocxConvert('Fishermen.docx', 'Fishermen.pdf');
103
+
104
+ // then the more flexible line-by-line conversion API
105
+ await flexibleDocxConvert('the_rime_of_the_ancient_mariner.docx',
106
+ 'the_rime_of_the_ancient_mariner.pdf');
107
+
108
+ // conversion of RTL content
109
+ await flexibleDocxConvert('factsheet_Arabic.docx', 'factsheet_Arabic.pdf');
110
+ } catch (err) {
111
+ console.log(err);
112
+ }
113
+
114
+ console.log('Done.');
115
+ };
116
+
117
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
118
+ console.log('Error: ' + JSON.stringify(error));
119
+ }).then(function () { return PDFNet.shutdown(); });
120
+
121
+ };
122
+ exports.runOfficeToPDF();
123
+ })(exports);
124
+ // eslint-disable-next-line spaced-comment
125
+ //# sourceURL=OfficeToPDFTest.js
@@ -1,192 +1,192 @@
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 reduce PDF file size using 'pdftron.PDF.Optimizer'.
8
- // The sample also shows how to simplify and optimize PDF documents for viewing on mobile devices
9
- // and on the Web using 'pdftron.PDF.Flattener'.
10
- //
11
- // @note Both 'Optimizer' and 'Flattener' are separately licensable add-on options to the core PDFNet license.
12
- //
13
- // ----
14
- //
15
- // 'pdftron.PDF.Optimizer' can be used to optimize PDF documents by reducing the file size, removing
16
- // redundant information, and compressing data streams using the latest in image compression technology.
17
- //
18
- // PDF Optimizer can compress and shrink PDF file size with the following operations:
19
- // - Remove duplicated fonts, images, ICC profiles, and any other data stream.
20
- // - Optionally convert high-quality or print-ready PDF files to small, efficient and web-ready PDF.
21
- // - Optionally down-sample large images to a given resolution.
22
- // - Optionally compress or recompress PDF images using JBIG2 and JPEG2000 compression formats.
23
- // - Compress uncompressed streams and remove unused PDF objects.
24
- //
25
- // ----
26
- //
27
- // 'pdftron.PDF.Flattener' can be used to speed-up PDF rendering on mobile devices and on the Web by
28
- // simplifying page content (e.g. flattening complex graphics into images) while maintaining vector text
29
- // whenever possible.
30
- //
31
- // Flattener can also be used to simplify process of writing custom converters from PDF to other formats.
32
- // In this case, Flattener can be used as first step in the conversion pipeline to reduce any PDF to a
33
- // very simple representation (e.g. vector text on top of a background image).
34
- //---------------------------------------------------------------------------------------
35
-
36
- const { PDFNet } = require('@pdftron/pdfnet-node');
37
- const PDFTronLicense = require('../LicenseKey/LicenseKey');
38
-
39
- ((exports) => {
40
- 'use strict';
41
-
42
- exports.runOptimizerTest = () => {
43
- const main = async () => {
44
- const inputPath = '../TestFiles/';
45
- const outputPath = inputPath + 'Output/';
46
- const inputFilename = 'newsletter';
47
-
48
- // The first step in every application using PDFNet is to initialize the
49
- // library and set the path to common PDF resources. The library is usually
50
- // initialized only once, but calling Initialize() multiple times is also fine.
51
-
52
- //--------------------------------------------------------------------------------
53
- // Example 1) Simple optimization of a pdf with default settings.
54
- //
55
- try {
56
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
57
- await doc.initSecurityHandler();
58
- await PDFNet.Optimizer.optimize(doc);
59
- doc.save(outputPath + inputFilename + '_opt1.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
60
- }
61
- catch (err) {
62
- console.log(err);
63
- }
64
-
65
- //--------------------------------------------------------------------------------
66
- // Example 2) Reduce image quality and use jpeg compression for
67
- // non monochrome images.
68
- try {
69
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
70
- await doc.initSecurityHandler();
71
- const image_settings = new PDFNet.Optimizer.ImageSettings();
72
-
73
- // low quality jpeg compression
74
- image_settings.setCompressionMode(PDFNet.Optimizer.ImageSettings.CompressionMode.e_jpeg);
75
- image_settings.setQuality(1);
76
-
77
- // Set the output dpi to be standard screen resolution
78
- image_settings.setImageDPI(144, 96);
79
-
80
- // this option will recompress images not compressed with
81
- // jpeg compression and use the result if the new image
82
- // is smaller.
83
- image_settings.forceRecompression(true);
84
-
85
- // this option is not commonly used since it can
86
- // potentially lead to larger files. It should be enabled
87
- // only if the output compression specified should be applied
88
- // to every image of a given type regardless of the output image size
89
- //image_settings.forceChanges(true);
90
-
91
- const opt_settings = new PDFNet.Optimizer.OptimizerSettings();
92
- opt_settings.setColorImageSettings(image_settings);
93
- opt_settings.setGrayscaleImageSettings(image_settings);
94
-
95
- // use the same settings for both color and grayscale images
96
- await PDFNet.Optimizer.optimize(doc, opt_settings);
97
-
98
- doc.save(outputPath + inputFilename + '_opt2.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
99
- }
100
- catch (err) {
101
- console.log(err);
102
- }
103
-
104
- //--------------------------------------------------------------------------------
105
- // Example 3) Use monochrome image settings and default settings
106
- // for color and grayscale images.
107
- try {
108
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
109
- await doc.initSecurityHandler();
110
-
111
- const mono_image_settings = new PDFNet.Optimizer.MonoImageSettings();
112
-
113
- mono_image_settings.setCompressionMode(PDFNet.Optimizer.MonoImageSettings.CompressionMode.e_jbig2);
114
- mono_image_settings.forceRecompression(true);
115
-
116
- const opt_settings = new PDFNet.Optimizer.OptimizerSettings();
117
-
118
- opt_settings.setMonoImageSettings(mono_image_settings);
119
-
120
- await PDFNet.Optimizer.optimize(doc, opt_settings);
121
- doc.save(outputPath + inputFilename + '_opt3.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
122
- }
123
- catch (err) {
124
- console.log(err);
125
- }
126
-
127
- // ----------------------------------------------------------------------
128
- // Example 4) Use Flattener to simplify content in this document
129
- // using default settings
130
- try {
131
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'TigerText.pdf');
132
- await doc.initSecurityHandler();
133
-
134
- const fl = await PDFNet.Flattener.create();
135
-
136
- // The following lines can increase the resolution of background
137
- // images.
138
- //fl.setDPI(300);
139
- //fl.setMaximumImagePixels(5000000);
140
-
141
- // This line can be used to output Flate compressed background
142
- // images rather than DCTDecode compressed images which is the default
143
- //fl.setPreferJPG(false);
144
-
145
- // In order to adjust thresholds for when text is Flattened
146
- // the following function can be used.
147
- //fl.setThreshold(PDFNet.Flattener.Threshold.e_keep_most);
148
-
149
- // We use e_fast option here since it is usually preferable
150
- // to avoid Flattening simple pages in terms of size and
151
- // rendering speed. If the desire is to simplify the
152
- // document for processing such that it contains only text and
153
- // a background image e_simple should be used instead.
154
- await fl.process(doc, PDFNet.Flattener.Mode.e_fast);
155
-
156
- doc.save(outputPath + 'TigerText_flatten.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
157
- }
158
- catch (err) {
159
- console.log(err);
160
- }
161
-
162
- //--------------------------------------------------------------------------------
163
- // Example 5) Optimize a PDF for viewing using SaveViewerOptimized.
164
- try {
165
- const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
166
- doc.initSecurityHandler();
167
-
168
- const opts = new PDFNet.PDFDoc.ViewerOptimizedOptions();
169
-
170
- // set the maximum dimension (width or height) that thumbnails will have.
171
- opts.setThumbnailSize(1500);
172
-
173
- // set thumbnail rendering threshold. A number from 0 (include all thumbnails) to 100 (include only the first thumbnail)
174
- // representing the complexity at which SaveViewerOptimized would include the thumbnail.
175
- // By default it only produces thumbnails on the first and complex pages.
176
- // The following line will produce thumbnails on every page.
177
- // opts.setThumbnailRenderingThreshold(0);
178
-
179
- await doc.saveViewerOptimized(outputPath + inputFilename + '_SaveViewerOptimized.pdf', opts);
180
- }
181
- catch (err) {
182
- console.log(err);
183
- }
184
- };
185
- PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
186
- console.log('Error: ' + JSON.stringify(error));
187
- }).then(function () { return PDFNet.shutdown(); });
188
- };
189
- exports.runOptimizerTest();
190
- })(exports);
191
- // 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 reduce PDF file size using 'pdftron.PDF.Optimizer'.
8
+ // The sample also shows how to simplify and optimize PDF documents for viewing on mobile devices
9
+ // and on the Web using 'pdftron.PDF.Flattener'.
10
+ //
11
+ // @note Both 'Optimizer' and 'Flattener' are separately licensable add-on options to the core PDFNet license.
12
+ //
13
+ // ----
14
+ //
15
+ // 'pdftron.PDF.Optimizer' can be used to optimize PDF documents by reducing the file size, removing
16
+ // redundant information, and compressing data streams using the latest in image compression technology.
17
+ //
18
+ // PDF Optimizer can compress and shrink PDF file size with the following operations:
19
+ // - Remove duplicated fonts, images, ICC profiles, and any other data stream.
20
+ // - Optionally convert high-quality or print-ready PDF files to small, efficient and web-ready PDF.
21
+ // - Optionally down-sample large images to a given resolution.
22
+ // - Optionally compress or recompress PDF images using JBIG2 and JPEG2000 compression formats.
23
+ // - Compress uncompressed streams and remove unused PDF objects.
24
+ //
25
+ // ----
26
+ //
27
+ // 'pdftron.PDF.Flattener' can be used to speed-up PDF rendering on mobile devices and on the Web by
28
+ // simplifying page content (e.g. flattening complex graphics into images) while maintaining vector text
29
+ // whenever possible.
30
+ //
31
+ // Flattener can also be used to simplify process of writing custom converters from PDF to other formats.
32
+ // In this case, Flattener can be used as first step in the conversion pipeline to reduce any PDF to a
33
+ // very simple representation (e.g. vector text on top of a background image).
34
+ //---------------------------------------------------------------------------------------
35
+
36
+ const { PDFNet } = require('@pdftron/pdfnet-node');
37
+ const PDFTronLicense = require('../LicenseKey/LicenseKey');
38
+
39
+ ((exports) => {
40
+ 'use strict';
41
+
42
+ exports.runOptimizerTest = () => {
43
+ const main = async () => {
44
+ const inputPath = '../TestFiles/';
45
+ const outputPath = inputPath + 'Output/';
46
+ const inputFilename = 'newsletter';
47
+
48
+ // The first step in every application using PDFNet is to initialize the
49
+ // library and set the path to common PDF resources. The library is usually
50
+ // initialized only once, but calling Initialize() multiple times is also fine.
51
+
52
+ //--------------------------------------------------------------------------------
53
+ // Example 1) Simple optimization of a pdf with default settings.
54
+ //
55
+ try {
56
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
57
+ await doc.initSecurityHandler();
58
+ await PDFNet.Optimizer.optimize(doc);
59
+ doc.save(outputPath + inputFilename + '_opt1.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
60
+ }
61
+ catch (err) {
62
+ console.log(err);
63
+ }
64
+
65
+ //--------------------------------------------------------------------------------
66
+ // Example 2) Reduce image quality and use jpeg compression for
67
+ // non monochrome images.
68
+ try {
69
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
70
+ await doc.initSecurityHandler();
71
+ const image_settings = new PDFNet.Optimizer.ImageSettings();
72
+
73
+ // low quality jpeg compression
74
+ image_settings.setCompressionMode(PDFNet.Optimizer.ImageSettings.CompressionMode.e_jpeg);
75
+ image_settings.setQuality(1);
76
+
77
+ // Set the output dpi to be standard screen resolution
78
+ image_settings.setImageDPI(144, 96);
79
+
80
+ // this option will recompress images not compressed with
81
+ // jpeg compression and use the result if the new image
82
+ // is smaller.
83
+ image_settings.forceRecompression(true);
84
+
85
+ // this option is not commonly used since it can
86
+ // potentially lead to larger files. It should be enabled
87
+ // only if the output compression specified should be applied
88
+ // to every image of a given type regardless of the output image size
89
+ //image_settings.forceChanges(true);
90
+
91
+ const opt_settings = new PDFNet.Optimizer.OptimizerSettings();
92
+ opt_settings.setColorImageSettings(image_settings);
93
+ opt_settings.setGrayscaleImageSettings(image_settings);
94
+
95
+ // use the same settings for both color and grayscale images
96
+ await PDFNet.Optimizer.optimize(doc, opt_settings);
97
+
98
+ doc.save(outputPath + inputFilename + '_opt2.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
99
+ }
100
+ catch (err) {
101
+ console.log(err);
102
+ }
103
+
104
+ //--------------------------------------------------------------------------------
105
+ // Example 3) Use monochrome image settings and default settings
106
+ // for color and grayscale images.
107
+ try {
108
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
109
+ await doc.initSecurityHandler();
110
+
111
+ const mono_image_settings = new PDFNet.Optimizer.MonoImageSettings();
112
+
113
+ mono_image_settings.setCompressionMode(PDFNet.Optimizer.MonoImageSettings.CompressionMode.e_jbig2);
114
+ mono_image_settings.forceRecompression(true);
115
+
116
+ const opt_settings = new PDFNet.Optimizer.OptimizerSettings();
117
+
118
+ opt_settings.setMonoImageSettings(mono_image_settings);
119
+
120
+ await PDFNet.Optimizer.optimize(doc, opt_settings);
121
+ doc.save(outputPath + inputFilename + '_opt3.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
122
+ }
123
+ catch (err) {
124
+ console.log(err);
125
+ }
126
+
127
+ // ----------------------------------------------------------------------
128
+ // Example 4) Use Flattener to simplify content in this document
129
+ // using default settings
130
+ try {
131
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + 'TigerText.pdf');
132
+ await doc.initSecurityHandler();
133
+
134
+ const fl = await PDFNet.Flattener.create();
135
+
136
+ // The following lines can increase the resolution of background
137
+ // images.
138
+ //fl.setDPI(300);
139
+ //fl.setMaximumImagePixels(5000000);
140
+
141
+ // This line can be used to output Flate compressed background
142
+ // images rather than DCTDecode compressed images which is the default
143
+ //fl.setPreferJPG(false);
144
+
145
+ // In order to adjust thresholds for when text is Flattened
146
+ // the following function can be used.
147
+ //fl.setThreshold(PDFNet.Flattener.Threshold.e_keep_most);
148
+
149
+ // We use e_fast option here since it is usually preferable
150
+ // to avoid Flattening simple pages in terms of size and
151
+ // rendering speed. If the desire is to simplify the
152
+ // document for processing such that it contains only text and
153
+ // a background image e_simple should be used instead.
154
+ await fl.process(doc, PDFNet.Flattener.Mode.e_fast);
155
+
156
+ doc.save(outputPath + 'TigerText_flatten.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
157
+ }
158
+ catch (err) {
159
+ console.log(err);
160
+ }
161
+
162
+ //--------------------------------------------------------------------------------
163
+ // Example 5) Optimize a PDF for viewing using SaveViewerOptimized.
164
+ try {
165
+ const doc = await PDFNet.PDFDoc.createFromFilePath(inputPath + inputFilename + '.pdf');
166
+ doc.initSecurityHandler();
167
+
168
+ const opts = new PDFNet.PDFDoc.ViewerOptimizedOptions();
169
+
170
+ // set the maximum dimension (width or height) that thumbnails will have.
171
+ opts.setThumbnailSize(1500);
172
+
173
+ // set thumbnail rendering threshold. A number from 0 (include all thumbnails) to 100 (include only the first thumbnail)
174
+ // representing the complexity at which SaveViewerOptimized would include the thumbnail.
175
+ // By default it only produces thumbnails on the first and complex pages.
176
+ // The following line will produce thumbnails on every page.
177
+ // opts.setThumbnailRenderingThreshold(0);
178
+
179
+ await doc.saveViewerOptimized(outputPath + inputFilename + '_SaveViewerOptimized.pdf', opts);
180
+ }
181
+ catch (err) {
182
+ console.log(err);
183
+ }
184
+ };
185
+ PDFNet.runWithCleanup(main, PDFTronLicense.Key).catch(function (error) {
186
+ console.log('Error: ' + JSON.stringify(error));
187
+ }).then(function () { return PDFNet.shutdown(); });
188
+ };
189
+ exports.runOptimizerTest();
190
+ })(exports);
191
+ // eslint-disable-next-line spaced-comment
192
192
  //# sourceURL=OptimizerTest.js