ImageEn, unit iexPlugIns

IEAddExtIOPlugin


Declaration

function IEAddExtIOPlugin(const FileName : string) : Integer;


Description

Adds support for extra file formats using legacy and custom input/output plug-in DLLs.
Result is the FileType for the added formats, e.g. ioOtherDLLPlugIns, ioOtherDLLPlugIns + 1, etc. This can be used by methods such as LoadFromStream.
If the Plug-in is not recognized the result will be -1.

Note:
 You will need to add add iexPlugIns to your uses clause
 From v6.1.0, dcrawlib.dll is no longer used for Camera Raw format support, use ielib instead


Example

// Register legacy add-ins
IEAddExtIOPlugIn('jbiglib.dll');
IEAddExtIOPlugIn('imagemagick.dll');


See Also

 RegisterPlugIns