![]() |
Drucken: "geräteunabhängige Bitmaps"
Hi! :hi:
Die Delphi-Hilfe empfiehlt: Zitat:
|
Re: Drucken: "geräteunabhängige Bitmaps"
Aus dem Kopf (kann in Detaills falsch sein)
Delphi-Quellcode:
Gruß
procedure MachEsAuf(DenCanvas :TCanvas);
var TmpBmp : TBitmap; begin TmpBmp := TBitmap.Create; try TmpBmp.width := 100; TmpBmp.height := 100; TmpBmp.pen.color := clBlack; TmpBmp.pen.style := psSolid; TmpBmp.LineTo(100,100); BitBlt(DenCanvas.Handle,0,0,100,100,TmpBmp.Handle,0,0,0); finally TmpBmp.free; end; end; |
Re: Drucken: "geräteunabhängige Bitmaps"
@Leuselator: Ich versteh nicht ganz, was du mir damit sagen willst :gruebel:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 23:12 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz