Image1.Picture.Bitmap ist wirklich nur gefüllt wenns ein Bitmap ist.
In .Graphic ist immer die Instanz. (alle Bilder in Pcture sind TGraphic-Nachfahren, auch TBitmap)
Alle anderen Typbasierenden-Property haben einen Cast drin und da wird bei Aufruf vorher auch der Typ angepasst.
Ist also kein "Bitmap" im Image.Picture geladen, dann wird beim Zugriff auf .Bitmap auch ein TBitmap erstellt und in .Graphic ausgetauscht,
aber ohne den Bildinhalt zu kpieren.
.Bitmap ist ein weicher Cast auf .Graphic und somit könnte man sagen es ist immer gefüllt ... nur nicht immer richtig.
Delphi-Quellcode:
function TPicture.GetBitmap: TBitmap;
begin
ForceType(TBitmap);
Result := TBitmap(Graphic);
end;
procedure TPicture.ForceType(GraphicType: TGraphicClass);
begin
...
FGraphic.Free;
FGraphic := GraphicType.Create;
...
end;