Error in parsing Type1FontData
Brought to you by:
otto_mayer
I got an error during parsing a type 1 font file.
An exception System.FormatException is thrown at line
217 in the file Prop\Type1FontData.cs in the fonction
Single.Parse.
It is during generating the text sample.
My CultureInfo is french.
I think the solution is to replace
number = Single.Parse(stringNumber)
with
number = Single.Parse(token,
CultureInfo.InvariantCulture)