Einzelnen Beitrag anzeigen

Benutzerbild von sx2008
sx2008

Registriert seit: 16. Feb 2008
Ort: Baden-Württemberg
2.332 Beiträge
 
Delphi 2007 Professional
 
#9

Re: Bitmap Kantenglättung

  Alt 14. Mär 2009, 18:33
Delphi-Quellcode:
tempbmp:=tbitmap.Create;
tempbmp.Assign(bmp);
Man braucht "bmp" nicht auf "tempbmp" kopieren, da "tempbmp" sowieso überschrieben wird.
Delphi-Quellcode:
tempbmp:=tbitmap.Create;
tempbmp.Width := bmp.Width;
tempbmp.Height:= bmp.Height;
tempbmp.PxelFormat := bmp.PixelFormat;
  Mit Zitat antworten Zitat