Hi
You could do it like this:
// Rotate some of the images right (90° clockwise)
RotImages := [2, 4, 5];
for i := 0 to ImageEnMView1.ImageCount - 1 do
if i in RotImages then
begin
bmp := ImageEnMView1.GetTIEBitmap( i );
bmp.Rotate( 270 );
ImageEnMView1.ReleaseBitmap( i, True );
end;
ImageEnMView1.Update();
Nigel
Xequte Software
www.imageen.com