TIEGlobalSettings.HeifEngine
Declaration
property HeifEngine: TIEImagingEngine;
Description
Specifies which engine is used to load and save Heif images.
Note:
◼ieenDLL requires you to ship the
LibHeif DLLs with your application
◼With ieenAuto, only the EXE folder is searched for relevant DLLs. For ieenDLL, the system path is also checked (or specify a path by calling
RegisterPlugins)
◼ieenNative and ieenWIC are not supported for saving
◼You can get the active engine using
ActiveHeifEngine, and the status of all imaging engines using
ImageEnVersion.Status
Default: ieenAuto (which uses ieenDLL if the
LibHeif DLL is available, otherwise ieenLegacy (if ImageMagick is available) or ieenWIC
Example
// Use the Heif DLL to create save files
IEGlobalSettings().HeifEngine := ieenDLL;
See Also
◼ActiveHeifEngine