PDF Generation Template Editor
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
In some output formats, you can set the preferred font name to unify the default font style in the output document.
The font_name option currently applies to the following formats:
The following example demonstrates how to set the preferred font name for the output document.
input_file_path = "***"
password = "***"
output_file_name = "***"
word_options = ConvertOptions()
word_options.font_name = "Arial"
error = CPDFConversion.start_pdf_to_word(input_file_path, password, output_file_name, word_options)