ImageEn, unit iesettings

TIEGlobalSettings.ActiveCameraRawEngine

TIEGlobalSettings.ActiveCameraRawEngine

Declaration

function ActiveCameraRawEngine(Recheck: Boolean = False): TIEImagingEngine;

Description

Returns the engine being used to load Camera Raw images.
This will be the same as CameraRawEngine unless ieenAuto is active, in which case it will return ieenDLL if a DLL is available, otherwise ieenWIC
For performance, checking is only performed at application start up. Set Recheck to true if status may have changed (e.g. a DLL may now be available).

Note: You can get the status of all imaging engines using ImageEnVersion.Status

Example

IEGlobalSettings().CameraRawEngine := ieenAuto;
if IEGlobalSettings().ActiveCameraRawEngine = ieenWIC then
  ShowMessage('WIC is being used for Camera Raw image Loading');

See Also

CameraRawEngine