When an XPS file is created, it subsets and obfuscates the original document's fonts as ODTTF font files, and bundles them in the XPS file (which is just a zip file, so they are easily extracted.)
I've extracted one of these ODTTF files, and included it as a Resource in my WPF app.
I'm now trying to use it as the FontFamily of a TextBlock. I tried various URI strings to reference the ODTTF font in my XAML, but I can't get it to work at all. (I can get a regular TTF file to work, just not an ODTTF)
Is there a way to do this? I've found evidence in a few Google searches that people are managing to do this!