I have a class in an ASP.net project, with a function returns a Bitmap object. Everything worked fine on my dev machine, but when I set the site up on a new server, all my text (written to the image with DrawString) appears in the wrong font. I copied the TrueType font file from my machine to the server, installed the font, restarted IIS, rebooted, but it still shows the wrong font.
Server is Win Server 2008 w/ IIS7. Dev machine is Win7 pro, Visual Studio 2010 Pro SP1.
Simplified version of my code:
Imports System.Drawing
Imports System.Data.SqlClient
Public Class MyImageClass
Public Function GetMyImage() As Bitmap
Dim oBitmap as Bitmap = New Bitmap(My.Resources.MyImage)
Dim oGraphic As Graphics = Graphics.FromImage(oBitmap)
oGraphic.TextRenderingHint = Text.TextRenderingHint.AntiAlias
Dim oBrushText As New SolidBrush(Color.White)
Dim ffamily As New FontFamily("Freestyle Script")
Dim oFont1 As New Font(ffamily, 15, FontStyle.Regular)
oGraphic.DrawString("My Text", oFont1, oBrushText, 10, 10)
Return oBitmap
End Function
End Class