确定字体属性的便携式方法(单色和标准 .net)
有谁知道一种方法来确定字体是否为等宽字体以及单个字符的宽度和高度(仅当字体为等宽字体时才相关)。 重要的要求是它可以与 .net 的 mono 和 microsoft 实现一起使用。
谢谢
Does anyone know a way to determine if a font is monospace and the width and height of a single character (only relevant if it is monospace).
The important requirement is that it works with mono and microsoft implementations of .net .
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先您需要选择您的目标 GUI 工具包。
AFAIK,字体并不是以独立于工具包的方式抽象的。
对于 WinForms,TextRenderer.MeasureText 方法与“iii”和“一起使用www”字符串可以帮助您猜测字体是否是等宽字体以及字符单元格的可能“固定”宽度,但它可能不适用于非常小的点大小......
First thing you need to choose which GUI Toolkit you are targeting.
Fonts aren't abstracted in a toolkit-independent way, AFAIK.
For WinForms, TextRenderer.MeasureText method used with "iii" and "www" strings can help you guess if the font is monospaced and which is the probable 'fixed' width of a char cell, bu it may not work right for very small point sizes...