Ungeprüft und auf die Schnelle ...
Siehe TForm.FindComponent und ggf. Stichwort "Typumwandlung" in der Delphi-Hilfe
Delphi-Quellcode:
...
var
hObject : TImage;
x : String;
begin
x := '2';
hObject := TImage(Form1.FindComponent('Image' + x));
hObject.Picture.Bitmap.LoadFromFile('Bild.bmp');
end;
...