I appreciate the response and help.
In response to using the Update method. It would not display the Tiff without that before. Using the code you provided however does display properly without using update.
There still is the problem with the initial FitToWidth however.
I modified to code to ensure that Shrink and Stretch were disabled but it still won't FitToWidth until the second Tiff load.
My Code modification:
try
ImageEnDBVect1.LockUpdate;
BlobField := tbScan.FieldByName('FullImage') as TBlobField;
BlobStream := tbScan.CreateBlobStream(BlobField, bmRead);
BlobStream.Position := 0;
ImageEnDBVect1.IO.LoadFromStreamTIFF(BlobStream);
ImageEnDBVect1.AutoStretch := False;
ImageEnDBVect1.AutoShrink := False;
ImageEnDBVect1.FitToWidth;
finally
ImageEnDBVect1.UnlockUpdate;
BlobStream.Free;
end;
Thanks much