Font rendering libraries for C # / dot-NET?

Are there free, third-party libraries for rendering arbitrary scaled and rotated text in dot-NET applications? Although the built-in GDI + allows scaling and rotation of the text, its methods for determining the displayed text dimensions are not accurate enough, and the differences in kerning as a text addition to the displayed string make it unsuitable for use in certain types of software (for example, for instance, editing software graphics).

Requirements:

  • Native .NET code.
  • Arbitrary scaling and rotation of the text.
  • Exact text metrics.
  • Consistent kerning regardless of string length.
+5
source share
1 answer

The Windows Presentation Foundation provides sophisticated typography support .

+2
source

All Articles