Hi Nigel,
your Idear is working with one correction:
io := TImageEnIO.Create(nil);
if io.ParamsFromStream( stream ) then
begin
totalFrames:=io.params.imagecount;
for i : 0 to totalFrames do
if WantFrame( i ) do
begin
stream.Position := 0;
io.Params.ImageIndex := i;
io.LoadFromStream( stream );
ImageEnMView1.AppendImage( io.IEBitmap );
end;
...
Thanks
Best regards
Ralf