ImageEnPro.pas
In both the lines listed below, AlphaChannel is being created if it doesn't exist so they need to be changed to the following:
Line 5735 --if source.HasAlphaChannel then
_ResampleEx(source, dest, IEIFB(true, source.AlphaChannel, nil), FilterType, fOnProgress, Sender)
else
_ResampleEx(source, dest, IEIFB(False, Nil, nil), FilterType, fOnProgress, Sender);
Line 16108 --if Src.HasAlphaChannel then
_ResampleEx(Src, Dst, IEIFB(True, Src.AlphaChannel, nil), FilterType, nil, nil)
else
ResampleEx(Src, Dst, IEIFB(false, nil, nil), FilterType, nil, nil);