|
static void | FromExcel (const wchar_t *src_excel_file_path, const wchar_t *src_file_password, const wchar_t *saved_pdf_path, const wchar_t *engine_path, const Excel2PDFSettingData &setting_data) |
| Convert an Excel format file to a PDF file. More...
|
|
static void | FromHTML (const wchar_t *src_html, const wchar_t *engine_path, const wchar_t *cookies_path, const HTML2PDFSettingData &setting_data, const wchar_t *saved_pdf_path, int32 timeout) |
| Convert a HTML format file or a URL of a Web page to a PDF file. More...
|
|
static void | FromHTML (const wchar_t *src_html, const wchar_t *engine_path, foxit::common::file::ReaderCallback *cookies_reader, const HTML2PDFSettingData &setting_data, const wchar_t *saved_pdf_path, int32 timeout) |
| Convert a HTML format file or a URL of a Web page to a PDF file. More...
|
|
static void | FromHTML (const wchar_t *src_html, const wchar_t *engine_path, foxit::common::file::ReaderCallback *cookies_reader, const HTML2PDFSettingData &setting_data, foxit::common::file::WriterCallback *saved_pdf_filestream, int32 timeout) |
| Convert a HTML format file or a URL of a Web page to a PDF file. More...
|
|
static void | FromHTML (foxit::common::file::ReaderCallback *src_html, const HTML2PDFRelatedResourceArray &html2pdf_related_resource_array, const wchar_t *engine_path, foxit::common::file::ReaderCallback *cookies_reader, const HTML2PDFSettingData &setting_data, foxit::common::file::WriterCallback *saved_pdf_filestream, int32 timeout) |
| Convert a HTML format file or a URL of a Web page to a PDF file. More...
|
|
static void | FromImage (const wchar_t *src_img, const wchar_t *saved_pdf_path) |
| Convert a Image format file to a PDF file. More...
|
|
static void | FromImage (foxit::common::file::ReaderCallback *file_reader, foxit::common::file::WriterCallback *saved_pdf_filestream) |
| Convert a Image format file to a PDF file. More...
|
|
static void | FromPowerPoint (const wchar_t *src_ppt_file_path, const wchar_t *src_file_password, const wchar_t *saved_pdf_path, const wchar_t *engine_path, const PowerPoint2PDFSettingData &setting_data) |
| Convert a PowerPoint format file to a PDF file. More...
|
|
static void | FromTXT (const wchar_t *src_txt, const wchar_t *saved_pdf_path, const TXT2PDFSettingData &setting_data) |
| Convert a TXT format file to a PDF file. More...
|
|
static void | FromWord (const wchar_t *src_word_file_path, const wchar_t *src_file_password, const wchar_t *saved_pdf_path, const wchar_t *engine_path, const Word2PDFSettingData &setting_data) |
| Convert a Word format file to a PDF file. More...
|
|
static bool | ToXML (const wchar_t *src_pdf_path, const wchar_t *src_file_password, const wchar_t *saved_xml_path, const wchar_t *saved_image_folder_path, bool is_force_to_tagged_pdf) |
| Convert a PDF file to a XML format file. More...
|
|
Conversion add-on module can be used to do some conversion between PDF file and other file formats. Before using "Conversion" module, user should first prepare font resource folder as described in "Foxit PDF SDK Developer Guide.pdf" document. Before using any class or methods in this module, please ensure Foxit PDF SDK has been initialized successfully by function common::Library::Initialize with a key including "Conversion" module.
- See also
- common::Library
static void foxit::addon::conversion::Convert::FromExcel |
( |
const wchar_t * |
src_excel_file_path, |
|
|
const wchar_t * |
src_file_password, |
|
|
const wchar_t * |
saved_pdf_path, |
|
|
const wchar_t * |
engine_path, |
|
|
const Excel2PDFSettingData & |
setting_data |
|
) |
| |
|
static |
Convert an Excel format file to a PDF file.
Currently, this function can be used for Linux armv8 or Linux desktop system. If you are on a Linux armv8 system, then please ensure that WPS professional is installed on the machine. If you are on a Linux desktop system, then please ensure that LibreOffice is installed on the machine. Currently, it does not support LibreOffice 7.0 and later version.
- Parameters
-
[in] | src_excel_file_path | Path of a Excel format file. This should not be an empty string. |
[in] | src_file_password | Password for the input Excel format file. If no password is needed for the file, please pass an empty string. |
[in] | saved_pdf_path | Path of the saved PDF file as conversion result. This should not be an empty string. |
[in] | engine_path | In linux armv8 system, it is used to represent the path of WPS engine(librpcetapi.so). For examples, "/opt/kingsoft/wps-office/office6". It can be empty. Default path: "/opt/kingsoft/wps-office/office6". In linux desktop system, it is used to represent the path of LibreOffice engine(soffice.bin), and it can not be empty. For examples, "/usr/lib/libreoffice/program". |
[in] | setting_data | (Reserved, unsupported yet)Setting data used for converting. |
- Returns
- None.
static void foxit::addon::conversion::Convert::FromPowerPoint |
( |
const wchar_t * |
src_ppt_file_path, |
|
|
const wchar_t * |
src_file_password, |
|
|
const wchar_t * |
saved_pdf_path, |
|
|
const wchar_t * |
engine_path, |
|
|
const PowerPoint2PDFSettingData & |
setting_data |
|
) |
| |
|
static |
Convert a PowerPoint format file to a PDF file.
Currently, this function can be used for Linux armv8 or Linux desktop system. If you are on a Linux armv8 system, then please ensure that WPS professional is installed on the machine. If you are on a Linux desktop system, then please ensure that LibreOffice is installed on the machine. Currently, it does not support LibreOffice 7.0 and later version.
- Parameters
-
[in] | src_ppt_file_path | Path of a PowerPoint format file. This should not be an empty string. |
[in] | src_file_password | Password for the input Excel format file. If no password is needed for the file, please pass an empty string. |
[in] | saved_pdf_path | Path of the saved PDF file as conversion result. This should not be an empty string. |
[in] | engine_path | In linux armv8 system, it is used to represent the path of WPS engine(librpcwppapi.so). For examples, "/opt/kingsoft/wps-office/office6". It can be empty. Default path: "/opt/kingsoft/wps-office/office6". In linux desktop system, it is used to represent the path of LibreOffice engine(soffice.bin), and it can not be empty. For examples, "/usr/lib/libreoffice/program". |
[in] | setting_data | (Reserved, unsupported yet)Setting data used for converting. |
- Returns
- None.
static void foxit::addon::conversion::Convert::FromWord |
( |
const wchar_t * |
src_word_file_path, |
|
|
const wchar_t * |
src_file_password, |
|
|
const wchar_t * |
saved_pdf_path, |
|
|
const wchar_t * |
engine_path, |
|
|
const Word2PDFSettingData & |
setting_data |
|
) |
| |
|
static |
Convert a Word format file to a PDF file.
Currently, this function can be used for Linux armv8 or Linux desktop system. If you are on a Linux armv8 system, then please ensure that WPS professional is installed on the machine. If you are on a Linux desktop system, then please ensure that LibreOffice is installed on the machine. Currently, it does not support LibreOffice 7.0 and later version.
- Parameters
-
[in] | src_word_file_path | Path of a Word format file. This should not be an empty string. |
[in] | src_file_password | Password for the input Word format file. If no password is needed for the file, please pass an empty string. |
[in] | saved_pdf_path | Path of the saved PDF file as conversion result. This should not be an empty string. |
[in] | engine_path | In linux armv8 system, it is used to represent the path of WPS engine(librpcwpsapi.so). For examples, "/opt/kingsoft/wps-office/office6". It can be empty. Default path: "/opt/kingsoft/wps-office/office6". In linux desktop system, it is used to represent the path of LibreOffice engine(soffice.bin), and it can not be empty. For examples, "/usr/lib/libreoffice/program". |
[in] | setting_data | (Reserved, unsupported yet)Setting data used for converting. |
- Returns
- None.