ok,
now i do this:
with tfpReaderTiff and tpfWriterTiff i can open and save tiff file, but i can`t savetostream it :
var
S: TFileStream ;
B: AnsiString ;
begin
S := TFileStream.Create(opendialog4.FileName, fmOpenReadWrite);
SetLength(B, S.Size);
S.Read(B[1], S.Size);
memo1.Lines.LoadFromStream(S);
it`s ok with .doc, .rtf etc. - it dosen`t worki with tiff.
I try use tfpreader/writerTiff to savetostream tiff - but memo lines show "????".
Maybe you have an idea how read tifffile in memo ?