如何确定Tpicture是否包含Jpeg?

XBa*_*000 2 delphi image

我正在使用delphi7/2009.如何确定Tpicture的内容?jpeg bmp png等?

klu*_*udg 6

   if Picture.Graphic is TJPegImage then
     ShowMessage('JPEG')
   else if Picture.Graphic is TBitmap then
     ShowMessage('Bitmap');
//etc
Run Code Online (Sandbox Code Playgroud)