Fonts

  • Thread starter Thread starter Radi Radichev
  • Start date Start date
R

Radi Radichev

Hi.
I'm making a site with asp.net and c#. I want to ask if i can put a font on
my server and every user can use it. I mean dynamicly. not to have to
download the font and install it. just when the user sees the page to have
authomatic the font on my server. Can this be done?
Thanks.
 
The font that the browser uses to display HTML on the client needs to be
installed on the client machine.

From the server you can draw on a bitmap and return the image to the client.
That's going to be slower and may be of poor quality though.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top