| View previous topic :: View next topic |
| Author |
Message |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
Posted: Fri Feb 22, 2002 12:57 pm Post subject: New extension idea? Antialias fonts |
|
|
Hello,
Another good idea of a DLL would be to have Antialias fonts possibilities.
Here's a code snippet I took from the net if a Delphi programmer wants to do one:
var
lf : TLogFont;
begin
GetObject(Canvas.Font.Handle, SizeOf(TLogFont), @lf);
lf.lfQuality := ANTIALIASED_QUALITY;
Canvas.Font.Handle := CreateFontIndirect(lf);
Canvas.TextOut(0,0,’Hello’);
end;
Have a good day to all... |
|
| Back to top |
|
 |
CodeScript Moderator Team

Joined: 08 Jun 2003 Posts: 1060 Location: India
|
Posted: Mon Mar 15, 2004 5:25 pm Post subject: |
|
|
Hi
VDSGUI Extension has "Antialias" option for Dynafont.
DOWNLOAD VDSGUI _________________ Regards
- CodeScript
Give your application a professional look with the VDSGUI Extension |
|
| Back to top |
|
 |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
Posted: Mon Mar 15, 2004 5:32 pm Post subject: |
|
|
Thanks a lot !  |
|
| Back to top |
|
 |
CodeScript Moderator Team

Joined: 08 Jun 2003 Posts: 1060 Location: India
|
Posted: Tue Mar 16, 2004 2:17 am Post subject: |
|
|
Marty Nice to know you liked it  _________________ Regards
- CodeScript
Give your application a professional look with the VDSGUI Extension |
|
| Back to top |
|
 |
|