Hello,
In the mean time you can load the file using following code:
var
ieTemp: TImageEnView;
begin
ieTemp := TImageEnView.Create(Application);
ieTemp.IO.Params.JPEG_EnableAdjustOrientation := True;
ieTemp.IO.Params.PSD_LoadLayers := True;
ieTemp.IO.Params.PSD_ReplaceLayers := True;
ieTemp.IO.LoadFromFileIEN('YourFile');
//Loop through each Layer and do the needful here
//Once completed
FreeAndNil(ieTemp);
end;
HTH
Yogi Yang