图像格式的判断?(100分)

  • 主题发起人 主题发起人 7030
  • 开始时间 开始时间
7

7030

Unregistered / Unconfirmed
GUEST, unregistred user!
1.一个Timage里有一幅图像,如何才能判断出它是什么格式的图像?
2.如何知道Timage的图像为空?
 
1.有什么用吗?timage.picture.bitmap就是这个图象的转成.bmp格式的图象.graphic就是源图象.
2.if assigned(image1.picture) then showmessage('有图象')
else showmessage('没图象');
 
1、判断Image1.Picture.Graphic.ClassName,如果为TBitmap就是.bmp格式,
TJPEGImage就是.Jpg格式;
2、判断Image1.Picture.Graphic为nil则没图像。
 
多人接受答案了。
 
后退
顶部