Note: You must be registered in order to post a reply.To register, click here. Registration is FREE!
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