Hi all,
I am currently dealing with the problem mentioned in this Microsoft Connect Feedback: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=96049
The only difference to this feedback is that in my code the bug occurs only under Vista.
As the problem still seems to exist, has anyone here on SO found a ...
When I call the PrivateFontCollection.AddFontFile method in Mono.net It always returns a standard font-family. This bug has already been reported on several websites, but as far as I know without a way to solve it. The bug itself isn't fixed in the Mono-libraries yet. Is there any workaround for it?
EDIT: As a reaction on henchman's ans...
I'm using below simple code to write on an image with certain font.
PrivateFontCollection FontCollection = new PrivateFontCollection();
FontCollection.AddFontFile(ToplistConfig.PrivateFontsPath + "/font.ttf");
FontFamily FontCollectionFamily = new FontFamily(FontCollection.Families[0].Name, FontCollection);
Font myFont = new Font(FontCo...