IFileFormats
The IFileFormats interface is used to control the output file format and to configure principal file settings.
Properties
Defines the format that the output files will be saved in. It is both readable and writable.
Constant | Value | Description |
---|---|---|
FMT_BMP | 0 | BMP |
FMT_DCX | 5 | DCX |
FMT_GIF | 1 | GIF |
FMT_JPEG | 2 | JPEG |
FMT_PCX | 4 | PCX |
FMT_PNG | 6 | PNG |
FMT_TIFF | 3 | TIFF |
FMT_PDF | 7 |
IBMP BMP
Provides access to the IBMP interface which is designed to configure output files to be saved in BMP format.
IDCX DCX
Provides access to the IDCX interface which is designed to configure output files to be saved in DCX format.
IGIF GIF
Provides access to the IGIF interface which is designed to configure output files to be saved in GIF format.
IJPEG JPEG
Provides access to the IJPEG interface which is designed to configure output files to be saved in JPEG format.
IPCX PCX
Provides access to the IPCX interface which is designed to configure output files to be saved in PCX format.
IPDF PDF
Provides access to the IPDF interface which is designed to configure output files to be saved in PDF format.
IPNG PNG
Provides access to the IPNG interface which is designed to configure output files to be saved in PNG format.
ITIFF TIFF
Provides access to the ITIFF interface which is designed to configure output files to be saved in TIFF format.
Examples
Visual Basic 6
Dim objUDC As IUDC Dim itfPrinter As IUDCPrinter Dim itfProfile As IProfile Set objUDC = New UDC.APIWrapper Set itfPrinter = objUDC.Printers("Universal Document Converter") Set itfProfile = itfPrinter.Profile itfProfile.FileFormat.ActualFormat = FMT_PDF