Funktioniert! Danke!
Falls jemand so unwissend ist wie ich und das selbe Problem hat:
Einfach mit
Delphi-Quellcode:
var tempBitmap: TBitmap;
tempTarga: TTargaGraphic;
begin
tempTarga := xyz;
tempBitmap.Create;
tempBitmap.Assign(tempTarga);
dem Bitmap das Targa-Bild zuweisen. Der Typ TTargaGraphic ist in der GraphicEx enthalten.