如何确定Tpicture是否包含Jpeg?

时间:2010-08-05 02:22:01

标签: delphi image

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

2 个答案:

答案 0 :(得分:6)

   if Picture.Graphic is TJPegImage then
     ShowMessage('JPEG')
   else if Picture.Graphic is TBitmap then
     ShowMessage('Bitmap');
//etc

答案 1 :(得分:4)

if (APicture.Graphic is TBitmap) then
result := true 
else 
result := false;

//替换TBitmap使其成为其他格式//