WPF - Saving font to disk, then instantiating GlyphTypeface for font throws exception. Why?

后端 未结 5 1263
后悔当初
后悔当初 2021-01-12 19:47

I am mucking about with WPF glyphs and documents and have run into a null reference exception in the .Net 4 framework.

I extract and save true-type fonts to disk as

相关标签:
5条回答
  • 2021-01-12 19:50

    My workaround was to simply replace the < Glyphs > with equavalent < TextBlock >s. The couple of pixels difference in layout was not a problem in my case.

    Like you noted was the case for you, in my case also it was not a problem in .Net 3.5, but appeared in .Net 4.0.

    0 讨论(0)
  • 2021-01-12 19:52

    I (and a co-worker) finally found what our particular problem was: do not save the font files to %TEMP%. For some reason, having the fonts saved to some other folder makes it work (for us), and saving it to anywhere inside %TEMP% makes it break.

    0 讨论(0)
  • 2021-01-12 19:53

    According to XamlToys Doesn't work on framework 4.0???, the problem is in the extension of the file for partial fonts.

    When I renamed the .ofttf files I save to .ttf, it all works again. Haven't got the foggiest idea of why that is though. Seems to be new in .NET 4.0.

    0 讨论(0)
  • 2021-01-12 20:00

    This bug has been driving me nuts but I think I have a better understanding of what is going on now.

    For testing I used the following XAML:

    <Page
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
      <Glyphs
        FontUri="C:\Users\Public\Desktop\A.ttf"
        FontRenderingEmSize="100"
        Fill="Black"
        UnicodeString="Test"/>
    </Page>
    

    Using the XamlPadX application which runs on the .NET 2 runtime I could reliably render the XAML no matter where I placed the font.

    Using the Kaxaml application which runs on the .NET 4 runtime the XAML would often fail to render depending on where I placed the font in the file system. By moving the font file around and renaming I tried to discover a pattern in what was allowed. However, it was very hard to see a pattern.

    For instance storing the font in the path below would render the glyphs:

    C:\Users\Public\Desktop\A.ttf - OK
    

    Renaming it from A.ttf to B.ttf would throw the exception:

    C:\Users\Public\Desktop\B.ttf - throws exception
    

    Changing the extension would also throw the exception:

    C:\Users\Public\Desktop\A.odttf - throws exception
    

    Renaming parts of the path would sometimes wreak havoc but I was unable to see any pattern. Initially I used the temp path and getting exceptions lead me to this question and the answer about not using that path. However, later I have actually been able to use that path as long as the name of the file is A.ttf and not B.ttf so avoiding the temp path is not a sure fix.

    At some point during my tests using my own WPF application the B.ttf file name suddenly started working. However, I had to restart the Kaxaml application before it would accept the B.ttf file name. Also, at that point the A.odttf file name was still throwing exceptions.

    My suggestion is to use an application like Kaxaml or to create a small WPF application to test which font file names are acceptable and then use them. However, I fear that the nature of this bug is such that a "good" font file name may turn "bad" at a later point in time. Only time will show.

    0 讨论(0)
  • 2021-01-12 20:03

    I ended up using the workaround of saving each font to its own folder (using the font name for the folder name). The exception went away, so I guess we can chalk this up to a bug in .Net.

    0 讨论(0)
提交回复
热议问题