TDBImage
From Free Pascal wiki
Jump to navigationJump to search
│
English (en) │
français (fr) │
日本語 (ja) │
русский (ru) │
中文(中国大陆) (zh_CN) │
TDBImage is a data-bound control that shows images stored in BLOB fields in databases. It is available from the Data Controls tab of the Component Palette.
Storage
By default, Lazarus stores the binary image data preceded by the file extension to define the file type. This allows storing multiple image formats at will.
Delphi only allows a single file format (jpg?). Recent Lazarus versions allow this storage format as well and try to autodetect the image type based on magic data in the beginning of the binary data.
Example
See e.g. the sqlite_mushrooms/image_mushrooms example program in your Lazarus directory examples\database\
see also