Picture Object and BLOBs

Hi,

Just checked out the Picture object.

I use this with ORACLE (using ODAC).
If I link it to a BLOB field containing a BMP-file, it works perfectly to print out the picture.

If the BMP was zipped before storing it into the BLOB, fr cannot print it.

What can I do to print zipped BMPs? Easiest way?
Is zip support a feature for the future?

Thanks a lot,

Daniel

Comments

  • edited 7:17AM
    To show that field in the report, use TfrxReport.OnBeforePrint event:

    if Sender.Name = 'Picture1' then
    TfrxPictureView(Picture).Picture.Assign(do_something_with_your_dbfield)

Leave a Comment