如何测试TImage是否分配了图形?

时间:2010-04-27 00:38:36

标签: delphi testing components variable-assignment timage

我的程序中的表单上有一个TImage组件。

在某些情况下,程序必须测试:

如果“有一个图像分配给TImage组件的图片属性”,那么......

我该怎么做?

3 个答案:

答案 0 :(得分:2)

if Image1.Picture.Graphic = NIL 
then ShowMessage("There is no image.")
else ShowMessage("Image found.");

如果使用位图,您也可以这样做:

if Image.Picture.Bitmap.Empty then ShowMessage("There is no spoon");

答案 1 :(得分:1)

迟到总比没有好! 正确的方法是:

if Assigned(Image1.Picture.Graphic) then ...

答案 2 :(得分:0)

你没有说,但我会假设你在谈论德尔福。

您可以通过测试来检查TImage控件中是否存在位图:

if Image.Picture.Bitmap.Width > 0 then
  // do whatever