vote up -1 vote down star

How to save jpg image to database and then load it in Delphi using FIBplus and TImage?

flag

3 Answers

vote up 2 vote down
var
  S : TMemoryStream;
begin
  S := TMemoryStream.Create;
  try
    TBlobField(AdoQuery1.FieldByName('ImageField')).SaveToStream(S);
    S.Position := 0;
    Image1.Picture.Graphic.LoadFromStream(S);
  finally
    S.Free;
  end;
end;

if you are using JPEG images, add JPG unit to uses clause of your unit file.

link|flag
vote up 0 vote down

Take a look here. I think you have to convert it to a stream, store it and vice versa.

link|flag
vote up 0 vote down

This page explains it. Use SaveToStream and a TMemoryStream instead of SaveToFile if you don't want temporary files. TImage.Picture has a LoadFromStream which loads the image from the stream into the TImage for display.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.