I've downloaded the version 3.08 of this component and i've a problem on
load BMP image on a paradox table.
In the version 2.8 that i used previusly i've no problem.
I look on bmp header and i discover that the correct signature on bmp
image is #$42#$4D and not #$42#$47 i correct the problem in Picview
file and the component feel good.
The correction on code that i've done is
GraphicSigns: array[1..4] of TGraphicSign = (
(*(GraphicClass: TBitmap; Offset: 0; Length: 2; Signature: #$42#$47), // BMP Error*)
(GraphicClass: TBitmap; Offset: 0; Length: 2; Signature: #$42#$4D), // BMP Ok
Please verify this if i've a strange bmp file format or it's a mistake in your code.
Thanks for your useful component Stefano P.