This function converts a source file to an output PDF file.
KVPDFState pascal fpConvertFileToFile( const KVPDFContext context, const char* const pszInFileName, const char* const pszOutFileName, const KVPDFOptions options)
|
A context value obtained by using fpInit(). |
|
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. |
KVPDFState
structure with eErrorCode
set to KVERR_Success
.KVPDFState
structure that indicates the reason for the error.You cannot create PDF files in the current working directory.
KVStructInit()
macro.
|