Hi all
I'm new using ImageEn, so xcuse if this is a stupid question ;-)
I'm just trying the get some EXIF info. It's working fine on jpg, but not on HEIC (coming from iPhone 13)
--> ParamsFromFile is doing an EIEException 'WIC Failure'
if ImageEnIO1.ParamsFromFile('IMG_0571.HEIC', True) then begin
if ImageEnIO1.Params.EXIF_HasEXIFData then begin
Orientation := ImageEnIO1.Params.EXIF_Orientation.ToString;
...
I'm on Delphi 11
Any idea ?
G13