I tried this, but the result is the same, regardless of the compression:
var
iMemoryStream: TMemoryStream;
iFileSize: Int64;
begin
{Save all the frames to a stream }
ImageEnMView1.MIO.SaveToStreamTIFF(iMemoryStream);
iFileSize := iMemoryStream.Size;
dxStatusBar1.Panels[7].Text := FormatByteSize(iFileSize);
end;
So my guess is, it will not work.
Maybe I'll try saving the file to a temp folder...
William Miller