我们需要:
- Measure text accurately.
- Render text line by line to a screen graphics context in the presence of translation and scaling transforms applied to the graphics context.
- Hit testing: allow text to be selected precisely with the mouse or via a displayed caret.
- Print the result if needed, and as accurately as possible, with a printer. Note: this is secondary. Screen rendering and hit testing are primary.
- Run on Windows XP and higher operating systems.
WinForms 内部的 WinForms 应用程序也将图形和图像显示为相同的图形背景。
我们遇到的有四种技术。我们尝试了使用前两种技术,在几个月的时间里遇到了上述问题。
GDI+
然而,根据MSDN 表示,调用图形。MeaureString与StringFormat.GenericTyplogy
和TextRenderingHint.AntiAlias
一起调用图像。但是,根据我们的经验,以及其它的经验,情况并非如此,我们没有得到准确的字符串测量。
- Pros: Fast
- Cons: inaccurate string measurement.
结果:由于字符串测量不准确,无法使用。
GDI via TextRenderer
这是为了克服GDI+的局限性。
- Very slow
- Does not work with graphics transforms
结果:由于这些原因无法使用
GDI via p/invoke
调用 GetTextExtentExpent
用于文本测量,并调用 DrawText
/ /
drawText
/ < ExtTextOut
用于翻譯。
我们还没试过这个
DirectWrite
这似乎很有希望,因为它与包括GDI/GDI+在内的其他技术进行互动,所以我们其他的图形投影可能不会改变,但只有Windows Vista和最新的Windows版本才有这种机会。 目前,这是个问题,因为Windows XP仍然有一个重要的安装基地。
Question
鉴于这些要求,哪些技术可以发挥作用?
Note: There s much misinformation about this topic floating around, so please answer this question only if you have expertise in this area. Also, please don t suggest WPF - that isn t something we re considering using.