hallo, dann musst du das jpg erst in ein bitmap zeichnen:
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;
das bitmap kannst du dann in dein timage reinpüacken und trotzdem noch drauf rumzeichnen.
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