Use TTF Font Without Installing


/ Published in: Delphi
Save to your folder(s)

Here's how to use a TTF (true type font) in your Delphi application without having to install it in Windows:
In the OnCreate event for the main form in your Delphi application call the AddFontResource API function. The AddFontResource function adds the font resource from the specified file to the system font table.
When an application no longer needs a font resource that it loaded by calling the AddFontResource function, it must remove that resource by calling the RemoveFontResource function. Do this in the OnDestroy event for the main form.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.