Delphi-Quellcode:
var
hallo: TGraphic;
[...]
begin
Form1.Refresh;
hallo := TGraphic.Create;
hallo.Width := 400;
hallo.Height := 400;
hallo.LoadFromFile('weihnachtsmann2.bmp');
end;
Die Ausgabe spar ich mir jetzt mal, es geht auch so schon nicht. Wobei ich das nicht so ganz nachvollziehen kann. Mit TPicture und TBitmap gehts so auch.