How to save jpg image to database and then load it in Delphi using FIBplus and TImage?
|
|
if you are using JPEG images, add JPG unit to uses clause of your unit file. |
||
|
|
|
|
Take a look here. I think you have to convert it to a stream, store it and vice versa. |
||
|
|
|
|
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. |
||
|
|
