7 7030 Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-15 #1 1.一个Timage里有一幅图像,如何才能判断出它是什么格式的图像? 2.如何知道Timage的图像为空?
S sonie Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-15 #2 1.有什么用吗?timage.picture.bitmap就是这个图象的转成.bmp格式的图象.graphic就是源图象. 2.if assigned(image1.picture) then showmessage('有图象') else showmessage('没图象');
1.有什么用吗?timage.picture.bitmap就是这个图象的转成.bmp格式的图象.graphic就是源图象. 2.if assigned(image1.picture) then showmessage('有图象') else showmessage('没图象');
H Huzzz Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-16 #3 1、判断Image1.Picture.Graphic.ClassName,如果为TBitmap就是.bmp格式, TJPEGImage就是.Jpg格式; 2、判断Image1.Picture.Graphic为nil则没图像。
1、判断Image1.Picture.Graphic.ClassName,如果为TBitmap就是.bmp格式, TJPEGImage就是.Jpg格式; 2、判断Image1.Picture.Graphic为nil则没图像。