- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 GDI 中获取字符的 ABC 宽度(左方位、右方位等)我会调用 GetCharABCWidths .
我如何使用 SharpDX 或 DirectWrite 实现相同的测量,对于相同的字符,我是否应该期望值在这与 GDI 之间匹配?
到目前为止我做了什么?由于缺少 Direct* 和 SharpDX 文档而迷失方向。
最佳答案
/// <summary>
/// Takes a string, text format, and associated constraints, and produces an object that represents the fully analyzed and formatted result.
/// </summary>
/// <param name="factory">an instance of <see cref="T:SharpDX.DirectWrite.Factory" /></param>
/// <param name="text">An array of characters that contains the string to create a new <see cref="T:SharpDX.DirectWrite.TextLayout" /> object from. This array must be of length stringLength and can contain embedded NULL characters.</param>
/// <param name="textFormat">A pointer to an object that indicates the format to apply to the string.</param>
/// <param name="maxWidth">The width of the layout box.</param>
/// <param name="maxHeight">The height of the layout box.</param>
/// <unmanaged>HRESULT CreateTextLayout([In, Buffer] const wchar* string,[None] UINT32 stringLength,[None] IDWriteTextFormat* textFormat,[None] FLOAT maxWidth,[None] FLOAT maxHeight,[Out] IDWriteTextLayout** textLayout)</unmanaged>
public TextLayout(Factory factory, string text, TextFormat textFormat, float maxWidth, float maxHeight)
示例代码:
using (var dwFactory = new SharpDX.DirectWrite.Factory())
{
var textLayout = new TextLayout(dwFactory, "ABC", textFormat, float.PositiveInfinity, float.PositiveInfinity);
var width = textLayout.Metrics.Width
...
}
关于c# - 在 SharpDX/DirectWrite 中获取 ABC 字符宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44594167/
我在 JavaScript 中使用正则表达式负前瞻来使用正则表达式匹配替换字符串中最后一次出现的字符串。 这是我的代码片段: var str = 'abc abc abc' var regex1 =
许多报告和开发团队必须使用该条件 where ABC>='00' and ABC='00' and ABC='0' and ABC ='00' 且 ABC ='0' 且 ABC< ='Z',我们在St
这个问题已经有答案了: What is the Java string pool and how is "s" different from new String("s")? [duplicate]
我有一个很长的正则表达式 (JavaScript),它包含以下构造: ((\\\\)|(\\[abc])|([^abc]))* 正则表达式表示: 匹配任何不包含字母 a、b 和 c 的字符串。 除非它
In [29]: re.findall("([abc])+","abc") Out[29]: ['c'] In [30]: re.findall("[abc]+","abc") Out[30]: ['
这个问题在这里已经有了答案: What is the difference between "text" and new String("text")? (13 个答案) 关闭 8 年前。 Stri
我正在尝试创建一个简单的抽象基类 Abstract它和它自己的方法一起提供了另外两个抽象基类的方法:Publisher和 Subscriber .当我尝试初始化具体类时 Concrete , 建立在
我正在学习如何使用egrep命令,我想找到一些在一行中重复3个字符的单词(例如,abc-abc-abc; ssd-ssd-ssd)。 我尝试了一些命令,例如 egrep '[a-z][a-z][a-z
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
太晚了,我还不太明白。 我的文字看起来像这样: This is a [;;Text] and I want to match [center]everything without ;;[/cente
我有 junit 测试用例,我按以下方式使用了 Spy ,并且 Junit 在以下情况下失败。 @Spy private Abc abc; 但是运行成功。 @Spy Abc abc = new A
"abc def" "abcd efgh" 如果我有一个大字符串,其中有一个空格分隔两个不同长度的子字符串,那么从较大字符串中提取每个子字符串的最佳方法是什么? 因为这是一个字符串而不是数组,数组语法
我想知道 MySQLBDDColumns.Text 中是否存在值“Type de prise” 我得到了我想知道的值是否包含在 Texte_Caractéristiques.Text 但只有我有值“T
这个问题已经有答案了: What is the purpose of the var keyword and when should I use it (or omit it)? (19 个回答) 已
我试图找到一个正则表达式来匹配具有字符串“question”但不具有或不包含字符串“ion”的所有字符组合。 例子: questionxxxx ------>匹配 xxxquestion-------
我想使用正则表达式从文件中读取特定字符之间的多个字符串。我已经尝试了以下代码,但无法获得预期的结果。 我的输入文件包含以下格式的数据: #*OQL[C++]: Extending C++ with a
这个问题已经有答案了: Are double and single quotes interchangeable in JavaScript? (23 个回答) 已关闭 7 年前。 jQuery 中
我有一个工作函数: $('#hints').after( 'Hint 1' ) 我正在尝试编辑data-content="Hint 1 Content"使用 jQuery。 我的职能是: fun
这里有两个简单的类: class Abc { public int x; } class Bcd { public int y; } 鉴于 obj 是 object 类型,这里有几个测试 Abc 或
我在严格的 Java 环境中。 所以这个问题并不像标题中那么简单,我不是要解决我遇到的问题,它更理论化,以获得更好的知识。 我感兴趣的是用双引号或单引号匹配 src,但如果是双引号,它也必须用双引号结
我是一名优秀的程序员,十分优秀!