Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to XOR a font on a bitmap canvas Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
29-Aug-02
Category
Graphic
Language
Delphi 2.x
Views
118
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Tomas Rutkauskas

How to XOR a font on a bitmap canvas

Answer:

Write the text to a (temporary) bitmap and copyrect that to the image:
1   
2   procedure XORText(sheet: TCanvas; x, y: Integer; text: string);
3   var
4     bmp: TBitmap;
5     r1, r2: TRect;
6   begin
7     bmp := TBitmap.create;
8     try
9       with sheet do
10      begin
11        bmp.Width := textWidth(text);
12        bmp.height := textheight(text);
13        r1 := rect(0, 0, bmp.Width, bmp.Height);
14        r2 := Rect(x, y, x + bmp.Width, y + bmp.Height);
15        bmp.canvas.font.assign(font);
16        bmp.canvas.brush.color := clBlack;
17        bmp.Canvas.fillrect(r1);
18        bmp.canvas.brush.style := bsClear;
19        bmp.canvas.textout(0, 0, text);
20        copymode := cmSrcInvert;
21        copyrect(r2, bmp.canvas, r1);
22      end;
23    finally
24      bmp.free;
25    end;
26  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC