Hello;
I see that when I load a JPG from a file, it always say that Width and Height are 800x600.
procedure LoadFile(const sSource);
var
Bmp: TIEBitmap;
h, w: integer;
begin
Bmp := TIEBitmap.Create;
try
w := Bmp.Width; ////////// always 0
h := Bmp.Height; ///////// always 0
Bmp.LoadFromFile(sSource);
w := Bmp.Width; ////////// always 800
h := Bmp.Height; ///////// always 600
What do I need to have the real size?
Thank you!