All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Convert.h
Go to the documentation of this file.
1 //---------------------------------------------------------------------------------------
2 // Copyright (c) 2001-2026 by Apryse Software Inc. All Rights Reserved.
3 // Consult legal.txt regarding legal and license information.
4 //---------------------------------------------------------------------------------------
5 #ifndef PDFTRON_H_CPPPDFConvert
6 #define PDFTRON_H_CPPPDFConvert
7 
8 #include <PDF/PDFDoc.h>
9 #include <PDF/Page.h>
10 #include <PDF/PDFRasterizer.h>
11 #include <PDF/DocumentConversion.h>
12 #include <PDF/TemplateDocument.h>
13 #include <PDF/WordToPDFOptions.h>
14 #include <PDF/CADConvertOptions.h>
16 #include <PDF/SVGConvertOptions.h>
17 #include <PDF/Reflow.h>
18 #include <C/PDF/TRN_Convert.h>
19 #include <SDF/Obj.h>
20 #include <SDF/ObjSet.h>
21 
22 namespace pdftron{
23  namespace PDF {
24 
26 // Experimental - Developer use only
28 {
29 public:
30  bool Next();
31  bool Ready();
32  UInt32 Progress();
35  void Destroy();
39 
43  operator bool () { return mp_impl!=0;}
44 #ifndef SWIGHIDDEN
45  TRN_ConversionMonitor mp_impl;
46  ConversionMonitor(TRN_ConversionMonitor impl, bool is_owner);
47  bool m_owner;
48 #endif
49 };
51 
52 class XPSOutputOptions;
53 class XODOutputOptions;
54 class HTMLOutputOptions;
55 class WordOutputOptions;
56 class ExcelOutputOptions;
58 class EPUBOutputOptions;
59 class SVGOutputOptions;
60 class TiffOutputOptions;
61 class Printer;
106 class Convert
107 {
108 public:
119 
131  };
132 
133  enum FlattenFlag {
151 
158  };
159 
169  static void FromXps(PDFDoc & in_pdfdoc, const UString & in_filename);
170 
182  static void FromXps(PDFDoc & in_pdfdoc, const char* buf, size_t buf_sz);
183 
194  static void FromEmf(PDFDoc & in_pdfdoc, const UString & in_filename);
195 
220  static void FromText(PDFDoc & in_pdfdoc, const UString& in_filename, const SDF::Obj& in_options = SDF::Obj());
221 
231  static void ToEmf(PDFDoc & in_pdfdoc, const UString & in_filename);
232 
242  static void ToEmf(Page & in_page, const UString & in_filename);
243 
244 
254  static void ToSvg(PDFDoc & in_pdfdoc, const UString & in_filename, const SVGOutputOptions& in_options);
255 
263  static void ToSvg(PDFDoc & in_pdfdoc, const UString & in_filename);
264 
274  static void ToSvg(Page & in_page, const UString & in_filename, const SVGOutputOptions& in_options);
275 
283  static void ToSvg(Page & in_page, const UString & in_filename);
284 
297  static void ToXps(PDFDoc & in_pdfdoc, const UString & in_filename, const XPSOutputOptions& options);
298 
307  static void ToXps(PDFDoc & in_pdfdoc, const UString & in_filename);
308 
325  static void ToXps(const UString & in_inputFilename, const UString & in_outputFilename, const XPSOutputOptions& options);
326 
339  static void ToXps(const UString & in_inputFilename, const UString & in_outputFilename);
340 
357  static void ToXod(const UString & in_filename, const UString & out_filename, const XODOutputOptions& options);
358 
371  static void ToXod(const UString & in_filename, const UString & out_filename);
372 
387  static void ToXod(PDFDoc & in_pdfdoc, const UString & out_filename, const XODOutputOptions& options);
388 
399  static void ToXod(PDFDoc & in_pdfdoc, const UString & out_filename);
400 
422  static void ToHtml(const UString & in_filename, const UString & out_path, const HTMLOutputOptions& options);
423 
437  static void ToHtml(const UString & in_filename, const UString & out_path);
438 
439 
448  static UString PageToHtml(const Page & page);
449 
450  static UString PageToHtmlZoned(const Page & page, const UString & json_zones);
451 
470  static void ToHtml(PDFDoc & in_pdfdoc, const UString & out_path, const HTMLOutputOptions& options);
471 
482  static void ToHtml(PDFDoc & in_pdfdoc, const UString & out_path);
483 
499  static void ToWord(const UString & in_filename, const UString & out_path, const WordOutputOptions& options);
500 
512  static void ToWord(const UString & in_filename, const UString & out_path);
513 
525  static void ToWord(PDFDoc& in_pdfdoc, Filters::Filter& out_filter);
526 
540  static void ToWord(PDFDoc& in_pdfdoc, Filters::Filter& out_filter, const WordOutputOptions& options);
541 
559  static void ToWord(PDFDoc & in_pdfdoc, const UString & out_path, const WordOutputOptions& options);
560 
574  static void ToWord(PDFDoc & in_pdfdoc, const UString & out_path);
575 
591  static void ToExcel(const UString& in_filename, const UString& out_path, const ExcelOutputOptions& options);
592 
604  static void ToExcel(const UString& in_filename, const UString& out_path);
605 
623  static void ToExcel(PDFDoc& in_pdfdoc, const UString& out_path, const ExcelOutputOptions& options);
624 
638  static void ToExcel(PDFDoc& in_pdfdoc, const UString& out_path);
639 
653  static void ToExcel(PDFDoc& in_pdfdoc, Filters::Filter& out_filter);
654 
670  static void ToExcel(PDFDoc& in_pdfdoc, Filters::Filter& out_filter, const ExcelOutputOptions& options);
671 
687  static void ToPowerPoint(const UString& in_filename, const UString& out_path, const PowerPointOutputOptions& options);
688 
700  static void ToPowerPoint(const UString& in_filename, const UString& out_path);
701 
719  static void ToPowerPoint(PDFDoc& in_pdfdoc, const UString& out_path, const PowerPointOutputOptions& options);
720 
734  static void ToPowerPoint(PDFDoc& in_pdfdoc, const UString& out_path);
735 
749  static void ToPowerPoint(PDFDoc& in_pdfdoc, Filters::Filter& out_filter);
750 
768  static void ToPowerPoint(PDFDoc& in_pdfdoc, Filters::Filter& out_filter, const PowerPointOutputOptions& options);
769 
790  static void ToEpub(const UString & in_filename, const UString & out_path, const HTMLOutputOptions& html_options, const EPUBOutputOptions& epub_options);
791 
808  static void ToEpub(const UString & in_filename, const UString & out_path, const HTMLOutputOptions& html_options);
809 
822  static void ToEpub(const UString & in_filename, const UString & out_path);
823 
842  static void ToEpub(PDFDoc & in_pdfdoc, const UString & out_path, const HTMLOutputOptions& html_options, const EPUBOutputOptions& epub_options);
843 
858  static void ToEpub(PDFDoc & in_pdfdoc, const UString & out_path, const HTMLOutputOptions& html_options);
859 
870  static void ToEpub(PDFDoc & in_pdfdoc, const UString & out_path);
871 
884  static void ToTiff(const UString & in_filename, const UString & out_path, const TiffOutputOptions& options);
885 
894  static void ToTiff(const UString & in_filename, const UString & out_path);
895 
908  static void ToTiff(PDFDoc & in_pdfdoc, const UString & out_path, const TiffOutputOptions& options);
909 
918  static void ToTiff(PDFDoc & in_pdfdoc, const UString & out_path);
919 
932  static void ToTiff(const UString & in_filename, Filters::Filter& out_filter, const TiffOutputOptions& options);
933 
942  static void ToTiff(const UString & in_filename, Filters::Filter& out_filter);
943 
956  static void ToTiff(PDFDoc & in_pdfdoc, Filters::Filter& out_filter, const TiffOutputOptions& options);
957 
966  static void ToTiff(PDFDoc & in_pdfdoc, Filters::Filter& out_filter);
967 
984  static Filters::Filter ToXod(const UString & in_filename, const XODOutputOptions& options);
985 
998  static Filters::Filter ToXod(const UString & in_filename);
999 
1014  static Filters::Filter ToXod(PDFDoc & in_pdfdoc, const XODOutputOptions& options);
1015 
1026  static Filters::Filter ToXod(PDFDoc & in_pdfdoc);
1028  // Experimental - Developer use only
1029  static ConversionMonitor ToXodWithMonitor(PDFDoc & in_pdfdoc, const XODOutputOptions& options);
1030  static ConversionMonitor ToXodWithMonitor(PDFDoc & in_pdfdoc);
1031 
1032 
1054  static void WordToPDF( PDFDoc & in_pdfdoc, const UString & in_filename, WordToPDFOptions* options);
1055 
1082  static DocumentConversion WordToPDFConversion( PDFDoc & in_pdfdoc, const UString & in_filename, WordToPDFOptions* options);
1083 
1105  static void WordToPDF( PDFDoc & in_pdfdoc, Filters::Filter in_stream, WordToPDFOptions* options);
1106 
1133  static DocumentConversion WordToPDFConversion( PDFDoc & in_pdfdoc, Filters::Filter in_stream, WordToPDFOptions* options);
1134 
1156  static void OfficeToPDF( PDFDoc & in_pdfdoc, const UString & in_filename, ConversionOptions* options);
1157 
1183  static DocumentConversion StreamingPDFConversion( PDFDoc & in_pdfdoc, const UString & in_filename, ConversionOptions* options);
1184 
1208  static DocumentConversion StreamingPDFConversion(const UString & in_filename, ConversionOptions* options);
1209 
1210  static Reflow CreateReflow(Page & in_page, const UString & json_zones);
1211 
1233  static void OfficeToPDF( PDFDoc & in_pdfdoc, Filters::Filter in_stream, ConversionOptions* options);
1234 
1260  static DocumentConversion StreamingPDFConversion( PDFDoc & in_pdfdoc, Filters::Filter in_stream, ConversionOptions* options);
1261 
1285  static DocumentConversion StreamingPDFConversion(Filters::Filter in_stream, ConversionOptions* options);
1286 
1306  static void ToPdf(PDFDoc & in_pdfdoc, const UString & in_filename);
1307 
1318  static void FromCAD(PDFDoc& in_pdfdoc, const UString& in_filename, CADConvertOptions* opts = 0);
1319 
1330  static void FromDICOM(PDFDoc& in_pdfdoc, const UString& in_filename, AdvancedImagingConvertOptions* opts = 0);
1331 
1332 
1340  static void FromSVG(PDFDoc& in_pdfdoc, const UString& in_filename, SVGConvertOptions* opts = 0);
1341 
1348  static void FromTiff(PDFDoc& in_pdfdoc, Filters::Filter in_data);
1349 
1373  static TemplateDocument CreateOfficeTemplate(const UString& in_filename, ConversionOptions* options);
1374 
1398  static TemplateDocument CreateOfficeTemplate(Filters::Filter in_stream, ConversionOptions* options);
1399 
1412  static bool RequiresPrinter(const UString & in_filename);
1413 
1414 
1415 private:
1416  Convert ();
1417  ~Convert ();
1418 };
1419 
1424 {
1425 public:
1434  void SetPrintMode(bool print_mode);
1435 
1440  void SetDPI(UInt32 dpi);
1441 
1446  void SetRenderPages(bool render);
1447 
1452  void SetThickenLines(bool thicken);
1453 
1459  void GenerateURLLinks(bool generate);
1460 
1462  {
1466  };
1467 
1476  void SetOverprint(enum OverprintPreviewMode mode);
1477 
1478  TRN_Obj m_obj;
1479 protected:
1480  friend class Convert;
1482 };
1483 
1488 {
1489 public:
1494  void SetOpenXps(bool openxps);
1495 };
1496 
1501 {
1502 public:
1503 
1505  e_internal_xfdf, // include the annotation file in the XOD output. This is the default option
1506  e_external_xfdf, // output the annotation file externally to the same output path with extension .xfdf.
1507  // This is not available when using streaming conversion
1508  e_flatten // flatten all annotations that are not link annotations
1509  };
1510 
1515  void SetExtractUsingZorder(bool use_zorder);
1516 
1521  void SetOutputThumbnails(bool include_thumbs);
1522 
1529  void SetThumbnailSize(UInt32 size);
1530 
1538  void SetThumbnailSize(UInt32 regular_size, UInt32 large_size);
1539 
1545  void SetElementLimit(UInt32 element_limit);
1546 
1553  void SetOpacityMaskWorkaround(bool opacity_render);
1554 
1563  void SetMaximumImagePixels(UInt32 max_pixels);
1564 
1571  void SetFlattenContent(enum Convert::FlattenFlag flatten);
1572 
1579 
1585  void SetPreferJPG(bool prefer_jpg);
1586 
1591  void SetJPGQuality(UInt32 quality);
1592 
1598  void SetSilverlightTextWorkaround(bool workaround);
1599 
1604  void SetAnnotationOutput(enum AnnotationOutputFlag annot_output);
1605 
1611  void SetExternalParts(bool generate);
1612 
1618  void SetEncryptPassword(const char* pass);
1619 
1627  void UseSilverlightFlashCompatible(bool compatible);
1628 };
1629 
1634 {
1635 public:
1637  {
1638  e_lang_auto = 0, /* Indicates automatic OCR language detection. */
1639  e_lang_catalan, /* Indicates the Catalan language for OCR. */
1640  e_lang_danish, /* Indicates the Danish language for OCR. */
1641  e_lang_german, /* Indicates the German language for OCR. */
1642  e_lang_english, /* Indicates the English language for OCR. */
1643  e_lang_spanish, /* Indicates the Spanish language for OCR. */
1644  e_lang_finnish, /* Indicates the Finnish language for OCR. */
1645  e_lang_french, /* Indicates the French language for OCR. */
1646  e_lang_italian, /* Indicates the Italian language for OCR. */
1647  e_lang_dutch, /* Indicates the Dutch language for OCR. */
1648  e_lang_norwegian, /* Indicates the Norwegian language for OCR. */
1649  e_lang_portuguese, /* Indicates the Portuguese language for OCR. */
1650  e_lang_polish, /* Indicates the Polish language for OCR. */
1651  e_lang_romanian, /* Indicates the Romanian language for OCR. */
1652  e_lang_russian, /* Indicates the Russian language for OCR. */
1653  e_lang_slovenian, /* Indicates the Slovenian language for OCR. */
1654  e_lang_swedish, /* Indicates the Swedish language for OCR. */
1655  e_lang_turkish /* Indicates the Turkish language for OCR. */
1656  };
1657 
1659  {
1662  };
1663 
1665 
1667 };
1668 
1673 {
1674 public:
1676  {
1677  e_Recover = 0, /* Recover as headers, footers, and/or footnotes. */
1678  e_DoNotDetect, /* Place in the body of the document. */
1679  e_DetectAndRemove /* Remove detected headers, footers, and/or footnotes. */
1680  };
1681 
1683 };
1684 
1689 {
1690 public:
1695 
1701  void SetPreferJPG(bool prefer_jpg);
1702 
1709  void SetJPGQuality(UInt32 quality);
1710 
1717  void SetDPI(UInt32 dpi);
1718 
1728  void SetMaximumImagePixels(UInt32 max_pixels);
1729 
1731  {
1732  e_fixed_position = 0, /* Content uses fixed positioning (default). */
1733  e_reflow_paragraphs, /* Deprecated. Text flows within paragraphs. */
1734  e_reflow_full /* Text flows freely edge-to-edge in a single column. */
1735  };
1736 
1749 
1755  void SetScale(double scale);
1756 
1762  void SetExternalLinks(bool enable);
1763 
1769  void SetInternalLinks(bool enable);
1770 
1776  void SetSimplifyText(bool enable);
1777 
1783  void SetReportFile(const UString& path);
1784 
1791  void SetTitle(const UString& title);
1792 
1800  void SetImageDPI(UInt32 dpi);
1801 
1807  void SetEmbedImages(bool embed);
1808 
1816  void SetFileConversionTimeoutSeconds(int seconds);
1817 
1824  void SetPages(int page_from, int page_to);
1825 
1831  void SetPDFPassword(const UString& password);
1832 
1834  {
1835  e_ocr_image_text = 0, /* Convert both images and pre-existing hidden text from previous OCR. Only applies to e_reflow_paragraphs. */
1836  e_ocr_image, /* Convert images only, ignoring pre-existing text from previous OCR, and do not perform any new OCR. */
1837  e_ocr_text, /* Convert pre-existing text from previous OCR only (e_reflow_paragraphs mode). Perform new OCR on scanned pages (e_reflow_full mode). */
1838  e_ocr_off, /* Convert images only, ignoring pre-existing text from previous OCR, and do not perform any new OCR. */
1839  e_ocr_always /* Perform new OCR on all pages. (e_reflow_full mode). */
1840  };
1841 
1853 
1860  void SetSimpleLists(bool enable);
1861 
1867  void SetConnectHyphens(bool connect);
1868 
1876  void SetDisableVerticalSplit(bool disable);
1877 
1884  void SetNoPageWidth(bool enable);
1885 
1892 
1899 
1906 
1913 
1920 
1927 
1934  void SetTextRecoveryNSE(bool use_ocr);
1935 
1943  void SetCustomOption(const UString& opt_name, const UString& opt_value);
1944 
1952  void SetCustomOption(const UString& opt_name, int opt_value);
1953 
1954 protected:
1955  TRN_Obj m_obj;
1956  friend class Convert;
1958 };
1959 
1964 {
1965 public:
1970 
1972  {
1977  };
1978 
1987 
1993  void SetPages(int page_from, int page_to);
1994 
1999  void SetPDFPassword(const UString& password);
2000 
2002  {
2003  e_ocr_image_text = 0, /* Deprecated. OCR will be performed. */
2004  e_ocr_image, /* Deprecated. OCR will not be performed. */
2005  e_ocr_text, /* Indicates that OCR will be performed on scanned pages, and the recognized text replaces the image pixels underneath (default). */
2006  e_ocr_off, /* Indicates that OCR will not be performed. */
2007  e_ocr_always /* Indicates that OCR will always be performed on all pages, and the recognized text replaces the image pixels underneath. */
2008  };
2009 
2017 
2023  void SetTextRecoveryNSE(bool use_ocr);
2024 
2030  void SetDetectTOC(bool detect_toc);
2031 
2038  void SetCustomOption(const UString& opt_name, const UString& opt_value);
2039 
2046  void SetCustomOption(const UString& opt_name, int opt_value);
2047 
2052  void SetConnectHyphens(bool connect);
2053 
2059 
2065 
2071  void SetCustomOCRLanguage(const UString& ocrlang);
2072 
2077  void SetPrioritizeVisualAppearance(bool replica);
2078 
2084 
2090 
2096 
2102 
2103 protected:
2104  TRN_Obj m_obj;
2105  friend class Convert;
2107 };
2108 
2113 {
2114 public:
2119 
2125  void SetPages(int page_from, int page_to);
2126 
2131  void SetPDFPassword(const UString& password);
2132 
2138 
2144 
2150  void SetCustomOCRLanguage(const UString& ocrlang);
2151 
2153  {
2154  e_ocr_text = 2, /* Indicates that OCR will be performed on scanned pages, and the recognized text replaces the image pixels underneath (default). */
2155  e_ocr_off, /* Indicates that OCR will not be performed. */
2156  e_ocr_always /* Indicates that OCR will always be performed on all pages, and the recognized text replaces the image pixels underneath. */
2157  };
2158 
2166 
2172  void SetTextRecoveryNSE(bool use_ocr);
2173 
2180  void SetCustomOption(const UString& opt_name, const UString& opt_value);
2181 
2188  void SetCustomOption(const UString& opt_name, int opt_value);
2189 
2194  void SetNonTableContent(bool non_tables);
2195 
2200  void SetSingleSheet(bool single_sheet);
2201 
2206  void SetPageSingleSheet(bool page_single);
2207 
2213 
2219 
2225 
2231 
2232 protected:
2233  TRN_Obj m_obj;
2234  friend class Convert;
2236 };
2237 
2242 {
2243 public:
2248 
2254  void SetPages(int page_from, int page_to);
2255 
2260  void SetPDFPassword(const UString& password);
2261 
2267 
2273 
2279  void SetCustomOCRLanguage(const UString& ocrlang);
2280 
2282  {
2283  e_ocr_text = 2, /* Indicates that OCR will be performed on scanned pages, and the recognized text replaces the image pixels underneath (default). */
2284  e_ocr_off, /* Indicates that OCR will not be performed. */
2285  e_ocr_always /* Indicates that OCR will always be performed on all pages, and the recognized text replaces the image pixels underneath. */
2286  };
2287 
2295 
2301  void SetTextRecoveryNSE(bool use_ocr);
2302 
2309  void SetCustomOption(const UString& opt_name, const UString& opt_value);
2310 
2317  void SetCustomOption(const UString& opt_name, int opt_value);
2318 
2324 
2330 
2336 
2342 
2343 protected:
2344  TRN_Obj m_obj;
2345  friend class Convert;
2347 };
2348 
2353 {
2354 public:
2359 
2364  void SetExpanded(bool expanded);
2365 
2372  void SetReuseCover(bool reuse);
2373 protected:
2374  TRN_Obj m_obj;
2375  friend class Convert;
2377 };
2378 
2383 {
2384 public:
2385 
2389  SVGOutputOptions();
2390 
2395  void SetEmbedImages(bool embed_images);
2396 
2401  void SetNoFonts(bool no_fonts);
2402 
2408  void SetSvgFonts(bool svg_fonts);
2409 
2416  void SetEmbedFonts(bool embed_fonts);
2417 
2422  void SetNoUnicode(bool no_unicode);
2423 
2428  void SetIndividualCharPlacement(bool individual_char_placement);
2429 
2434  void SetRemoveCharPlacement(bool remove_char_placement);
2435 
2442  void SetFlattenContent(enum Convert::FlattenFlag flatten);
2443 
2450 
2456  void SetFlattenDPI(UInt32 dpi);
2457 
2466  void SetFlattenMaximumImagePixels(UInt32 max_pixels);
2467 
2472  void SetCompress(bool svgz);
2473 
2478  void SetOutputThumbnails(bool include_thumbs);
2479 
2485  void SetThumbnailSize(UInt32 size);
2486 
2491  void SetCreateXmlWrapper(bool xml);
2492 
2497  void SetDtd(bool dtd);
2498 
2503  void SetAnnots(bool annots);
2504 
2514 protected:
2515  TRN_Obj m_obj;
2516  friend class Convert;
2518 };
2519 
2524 {
2525 public:
2530 
2537  void SetBox(enum Page::Box type);
2538 
2545  void SetRotate(enum Page::Rotate rotation);
2546 
2552  void SetClip(double x1, double y1, double x2, double y2);
2553 
2559  void SetPages(const char* page_desc);
2560 
2570 
2576  void SetCMYK(bool enable);
2577 
2584  void SetDither(bool enable);
2585 
2592  void SetGray(bool enable);
2593 
2603  void SetMono(bool enable);
2604 
2611  void SetAnnots(bool enable);
2612 
2617  void SetSmooth(bool enable);
2618 
2627  void SetPrintmode(bool enable);
2628 
2640  void SetTransparentPage(bool enable);
2641 
2642 
2648  void SetPalettized(bool enable);
2649 
2656  void SetDPI(double dpi);
2657 
2669  void SetGamma(double gamma);
2670 
2674  void SetHRes(int hres);
2675 
2679  void SetVRes(int vres);
2680 
2681 
2682 protected:
2683  TRN_Obj m_obj;
2684  friend class Convert;
2686 };
2687 
2692 class Printer
2693 {
2694 public:
2709  static void Install(const UString & in_printerName = "PDFTron PDFNet");
2710 
2718  static void Uninstall();
2719 
2728  static const UString GetPrinterName();
2729 
2738  static void SetPrinterName(const UString & in_printerName = "PDFTron PDFNet");
2739 
2751  static bool IsInstalled(const UString & in_printerName = "PDFTron PDFNet");
2752 
2753  enum Mode {
2770  };
2771 
2777  static void SetMode(Mode mode);
2778 
2784  static Mode GetMode();
2785 
2786 
2787 };
2788 
2789 #include <Impl/Convert.inl>
2790 
2791  }; // namespace PDF
2792 }; // namespace pdftron
2793 
2794 #endif // PDFTRON_H_CPPPDFConvert
StructuredOutputOptions::SectionConversionSetting GetHeadersAndFootersSetting()
void SetTextRecoveryNSE(bool use_ocr)
void SetThumbnailSize(UInt32 size)
void SetSearchableImageSetting(SearchableImageSetting setting)
void SetSearchableImageSetting(SearchableImageSetting setting)
StructuredOutputOptions::SectionConversionSetting GetFootnotesSetting()
void SetFootnotesSetting(StructuredOutputOptions::SectionConversionSetting option)
void SetExternalLinks(bool enable)
void SetExternalParts(bool generate)
StructuredOutputOptions::SectionConversionSetting GetFootnotesSetting()
void SetPDFPassword(const UString &password)
void SetEmbedFonts(bool embed_fonts)
void SetPreferredOCREngine(OutputOptionsOCR::PreferredOCREngine engine)
void SetCustomOption(const UString &opt_name, const UString &opt_value)
void SetFlattenContent(enum Convert::FlattenFlag flatten)
static TemplateDocument CreateOfficeTemplate(const UString &in_filename, ConversionOptions *options)
void SetPages(const char *page_desc)
static void FromCAD(PDFDoc &in_pdfdoc, const UString &in_filename, CADConvertOptions *opts=0)
void SetCustomOCRLanguage(const UString &ocrlang)
void SetCreateXmlWrapper(bool xml)
void SetPreferredOCREngine(OutputOptionsOCR::PreferredOCREngine engine)
void SetFlattenThreshold(enum Convert::FlattenThresholdFlag threshold)
static void SetPrinterName(const UString &in_printerName="PDFTron PDFNet")
void SetExtractUsingZorder(bool use_zorder)
void SetRotate(enum Page::Rotate rotation)
void SetPages(int page_from, int page_to)
void SetFlattenMaximumImagePixels(UInt32 max_pixels)
void SetNonTableContent(bool non_tables)
static DocumentConversion StreamingPDFConversion(PDFDoc &in_pdfdoc, const UString &in_filename, ConversionOptions *options)
pdftron::PDF::ExcelOutputOptions ExcelOutputOptions
Definition: Convert.h:113
void SetSingleSheet(bool single_sheet)
void SetSimpleLists(bool enable)
void SetOpacityMaskWorkaround(bool opacity_render)
pdftron::PDF::HTMLOutputOptions HTMLOutputOptions
Definition: Convert.h:111
pdftron::PDF::WordOutputOptions WordOutputOptions
Definition: Convert.h:112
pdftron::PDF::XODOutputOptions XODOutputOptions
Definition: Convert.h:110
StructuredOutputOptions::SectionConversionSetting GetFootnotesSetting()
static void ToEmf(PDFDoc &in_pdfdoc, const UString &in_filename)
void SetPages(int page_from, int page_to)
static void FromXps(PDFDoc &in_pdfdoc, const UString &in_filename)
void SetPrioritizeVisualAppearance(bool replica)
void SetMaximumImagePixels(UInt32 max_pixels)
void SetThumbnailSize(UInt32 size)
void SetFootnotesSetting(StructuredOutputOptions::SectionConversionSetting option)
void SetRemoveCharPlacement(bool remove_char_placement)
static Mode GetMode()
void SetConnectHyphens(bool connect)
void SetPDFPassword(const UString &password)
static Reflow CreateReflow(Page &in_page, const UString &json_zones)
ConversionMonitor & operator=(const ConversionMonitor &other)
pdftron::PDF::XPSOutputOptions XPSOutputOptions
Definition: Convert.h:109
void SetCustomOCRLanguage(const UString &ocrlang)
void SetReportFile(const UString &path)
TRN_ConversionMonitor mp_impl
Definition: Convert.h:45
void SetCustomOCRLanguage(const UString &ocrlang)
static const UString GetPrinterName()
pdftron::PDF::Printer Printer
Definition: Convert.h:118
void SetPages(int page_from, int page_to)
void SetSearchableImageSetting(SearchableImageSetting setting)
static void FromEmf(PDFDoc &in_pdfdoc, const UString &in_filename)
void SetWordOutputFormat(WordOutputFormat format)
void SetOutputThumbnails(bool include_thumbs)
static UString PreferredOCRChoiceToString(PreferredOCREngine engine)
static void ToPowerPoint(const UString &in_filename, const UString &out_path, const PowerPointOutputOptions &options)
static ConversionMonitor ToXodWithMonitor(PDFDoc &in_pdfdoc, const XODOutputOptions &options)
static void FromDICOM(PDFDoc &in_pdfdoc, const UString &in_filename, AdvancedImagingConvertOptions *opts=0)
void SetMaximumImagePixels(UInt32 max_pixels)
static void ToXod(const UString &in_filename, const UString &out_filename, const XODOutputOptions &options)
void SetTitle(const UString &title)
void SetFlattenDPI(UInt32 dpi)
pdftron::PDF::EPUBOutputOptions EPUBOutputOptions
Definition: Convert.h:115
void SetPDFPassword(const UString &password)
void SetTextRecoveryNSE(bool use_ocr)
static void ToHtml(const UString &in_filename, const UString &out_path, const HTMLOutputOptions &options)
StructuredOutputOptions::SectionConversionSetting GetHeadersAndFootersSetting()
void SetOverprint(PDFRasterizer::OverprintPreviewMode mode)
void SetDisableVerticalSplit(bool disable)
void SetPageSingleSheet(bool page_single)
void SetLanguage(OutputOptionsOCR::LanguageChoice language)
void SetLanguage(OutputOptionsOCR::LanguageChoice language)
void SetIndividualCharPlacement(bool individual_char_placement)
void SetFootnotesSetting(StructuredOutputOptions::SectionConversionSetting option)
void SetPrintMode(bool print_mode)
static void FromText(PDFDoc &in_pdfdoc, const UString &in_filename, const SDF::Obj &in_options=SDF::Obj())
void SetPalettized(bool enable)
static UString PageToHtmlZoned(const Page &page, const UString &json_zones)
void SetJPGQuality(UInt32 quality)
TRN_UInt32 UInt32
Definition: BasicTypes.h:13
void SetHeadersAndFootersSetting(StructuredOutputOptions::SectionConversionSetting option)
void SetConnectHyphens(bool connect)
static void FromSVG(PDFDoc &in_pdfdoc, const UString &in_filename, SVGConvertOptions *opts=0)
static void ToSvg(PDFDoc &in_pdfdoc, const UString &in_filename, const SVGOutputOptions &in_options)
static DocumentConversion WordToPDFConversion(PDFDoc &in_pdfdoc, const UString &in_filename, WordToPDFOptions *options)
StructuredOutputOptions::SectionConversionSetting GetHeadersAndFootersSetting()
void SetSilverlightTextWorkaround(bool workaround)
void SetTransparentPage(bool enable)
void SetOverprint(enum OverprintPreviewMode mode)
void SetPDFPassword(const UString &password)
void SetHeadersAndFootersSetting(StructuredOutputOptions::SectionConversionSetting option)
pdftron::PDF::TiffOutputOptions TiffOutputOptions
Definition: Convert.h:117
void SetEmbedImages(bool embed_images)
void GenerateURLLinks(bool generate)
void SetPreferJPG(bool prefer_jpg)
static StructuredOutputOptions::SectionConversionSetting SectionConversionSettingFromOption(TRN_Obj &obj)
void SetSimplifyText(bool enable)
void SetHeadersAndFootersSetting(StructuredOutputOptions::SectionConversionSetting option)
pdftron::PDF::SVGOutputOptions SVGOutputOptions
Definition: Convert.h:116
void UseSilverlightFlashCompatible(bool compatible)
void SetTextRecoveryNSE(bool use_ocr)
static bool IsInstalled(const UString &in_printerName="PDFTron PDFNet")
void SetExpanded(bool expanded)
static void ToPdf(PDFDoc &in_pdfdoc, const UString &in_filename)
static void SetMode(Mode mode)
void SetFlattenThreshold(enum Convert::FlattenThresholdFlag threshold)
void SetPrintmode(bool enable)
void SetLanguage(OutputOptionsOCR::LanguageChoice language)
void SetClip(double x1, double y1, double x2, double y2)
void SetHeadersAndFootersSetting(StructuredOutputOptions::SectionConversionSetting option)
void SetPreferJPG(bool prefer_jpg)
void SetInternalLinks(bool enable)
static void ToXps(PDFDoc &in_pdfdoc, const UString &in_filename, const XPSOutputOptions &options)
static bool RequiresPrinter(const UString &in_filename)
void SetCustomOption(const UString &opt_name, const UString &opt_value)
void SetPreferredOCREngine(OutputOptionsOCR::PreferredOCREngine engine)
static UString LanguageChoiceToString(LanguageChoice language)
StructuredOutputOptions::SectionConversionSetting GetHeadersAndFootersSetting()
static void Uninstall()
void SetFootnotesSetting(StructuredOutputOptions::SectionConversionSetting option)
void SetSvgFonts(bool svg_fonts)
void SetLanguage(OutputOptionsOCR::LanguageChoice language)
void SetCustomOption(const UString &opt_name, const UString &opt_value)
void SetNoFonts(bool no_fonts)
void SetFileConversionTimeoutSeconds(int seconds)
void SetOutputThumbnails(bool include_thumbs)
void SetNoPageWidth(bool enable)
void SetOverprint(enum PDFRasterizer::OverprintPreviewMode mode)
void SetAnnotationOutput(enum AnnotationOutputFlag annot_output)
void SetSearchableImageSetting(SearchableImageSetting setting)
void SetPreferredOCREngine(OutputOptionsOCR::PreferredOCREngine engine)
void SetJPGQuality(UInt32 quality)
static void WordToPDF(PDFDoc &in_pdfdoc, const UString &in_filename, WordToPDFOptions *options)
void SetPages(int page_from, int page_to)
static void ToWord(const UString &in_filename, const UString &out_path, const WordOutputOptions &options)
static void ToEpub(const UString &in_filename, const UString &out_path, const HTMLOutputOptions &html_options, const EPUBOutputOptions &epub_options)
static void ToExcel(const UString &in_filename, const UString &out_path, const ExcelOutputOptions &options)
StructuredOutputOptions::SectionConversionSetting GetFootnotesSetting()
void SetContentReflowSetting(ContentReflowSetting reflow)
void SetBox(enum Page::Box type)
void SetNoUnicode(bool no_unicode)
void SetDetectTOC(bool detect_toc)
void SetEncryptPassword(const char *pass)
static void Install(const UString &in_printerName="PDFTron PDFNet")
static void ToTiff(const UString &in_filename, const UString &out_path, const TiffOutputOptions &options)
static void FromTiff(PDFDoc &in_pdfdoc, Filters::Filter in_data)
void SetFlattenContent(enum Convert::FlattenFlag flatten)
void SetCustomOption(const UString &opt_name, const UString &opt_value)
void SetElementLimit(UInt32 element_limit)
pdftron::PDF::PowerPointOutputOptions PowerPointOutputOptions
Definition: Convert.h:114
static void OfficeToPDF(PDFDoc &in_pdfdoc, const UString &in_filename, ConversionOptions *options)
static UString PageToHtml(const Page &page)
void SetOpenXps(bool openxps)