Registriert seit: 1. Apr 2005
Ort: Bad Tölz
4.149 Beiträge
Delphi 2006 Professional
|
Re: Picture2Bitmap
29. Sep 2006, 16:55
möp... geht nicht...
Aber das:
Delphi-Quellcode:
procedure GetBitmap(const Graphic: TGraphic; out Bitmap: TBitmap);
begin
if Bitmap = nil then
Bitmap := TBitmap.Create;
Bitmap.SetSize(Graphic.Width,Graphic.Height);
Bitmap.Canvas.Draw(0,0,Graphic);
end;
Zumindest mit JPEG.
EDIT: tpicture->tgraphic
Lukas Erlacher Suche Grafiktablett. Spenden/Gebrauchtangebote willkommen.
Gotteskrieger gesucht!
For it is the chief characteristic of the religion of science that it works. - Isaac Asimov, Foundation I, Buch 1
|