Unfortunately this is not possible with current version. Anyway you can try to apply the color profile transformation after load. For example:
var
icc:TIEICC;
begin
ImageEnView1.IO.LoadFromFile('input.jpg');
// setup destination color profile
icc := TIEICC.Create();
icc.LoadFromFile('AdobeRGB1998.icc');
// setup source color profile (sRGB?)
ImageEnView1.IO.Params.InputICCProfile.Assign_sRGBProfile();
// transform
ImageEnView1.IO.Params.InputICCProfile.ConvertBitmap(ImageEnView1.IEBitmap, ie24RGB, icc);
icc.Free();
end;
Hope this helps.