Du kannst die Eigenschaft
Graphic überprüfen:
Delphi-Quellcode:
if (Image1.Picture.Graphic = nil) then
// kein Bild enthalten
else
if (Image1.Picture.Graphic is TBitmap) then
// bitmap
else
if (Image1.Picture.Graphic is TJPEGImage) then
// jpg
else
...
Gruß Hawkeye