Hi Howard
We have fixed the define errors. You can email us for an update, or just comment out the deprecated code.
The rotate change is easy to fix. This is the undefined method:
{$ifdef IEIncludeDeprecatedInV4}
// Deprecated in 5.0.0
procedure TImageEnProc.Rotate(Angle: Double; AntiAlias: Boolean; AntialiasMode: TIEAntialiasMode; BackgroundColor: TColor);
begin
if AntiAlias then
Rotate(Angle, AntiAliasMode, BackgroundColor)
else
Rotate(Angle, ierNone, BackgroundColor)
end;
{$endif}
So just remove the AntiAlias boolean parameter, and specify ierNone for AntiAliasMode if it was false.
Nigel
Xequte Software
www.imageen.com