fpConvertFileToFile()

This function converts a source file to an output PDF file.

Syntax

KVPDFState pascal fpConvertFileToFile(
    const KVPDFContext context,
    const char* const pszInFileName,
    const char* const pszOutFileName,
    const KVPDFOptions options)

Arguments

Context

A context value obtained by using fpInit().

pszInFileName

A null-terminated C string that contains the path of the file to export to PDF.

pszOutFileName A null-terminated C string that contains the full file path where the export process must create the PDF. This value cannot be the current working directory.
options A KVPDFOptions structure to set default page dimensions (for when none can be obtained from the source file), or to specify a password to use when the input file is password protected. Initialize a KVPDFOptions structure with the KVStructInit() macro and then modify the structure as necessary.

Returns

Discussion