Einzelnen Beitrag anzeigen

TheAn00bis

Registriert seit: 7. Jun 2004
386 Beiträge
 
#3

Re: Targa (tga) -> Bitmap (bmp) konvertieren

  Alt 11. Apr 2006, 20:18
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.
  Mit Zitat antworten Zitat