I'm not sure if it's a bug or if it's just me:
I'm trying to use Garamond and some other fonts. Unfortunately these aren't installed on the target machine (Server) and cannot be installed (shared hosting)
If I use this code here on my dev Server (where all fonts are installed), it works fine. However, If i execute this on the Server, the letter spacing is wrong.
Code:
Dim xfnt As New XFont("Garamond", _
6.61, _
XFontStyle.Regular, _
New XPdfFontOptions(False, _
False, _
"Garamond", _
Server.MapPath("~\GARA.TTF")))
.DrawString(s, xfnt, Brushes.Black, _
(width - .MeasureString(s, xfnt).Width) / 2, _
11.61)
Is it me or is it a bug in PDFSharp? How can I avoid this malfunction?