WPF - 命中测试字符的渲染像素

发布于 2024-10-07 01:42:17 字数 209 浏览 5 评论 0原文

有没有办法测试wpf中字符的像素?我希望能够命中字符“i”的点,但当我单击点和“i”行之间的空格时却得不到命中。我尝试使用 DrawingContext.DrawText 方法来执行此操作,但是当我使用 VisualTreeHelper.HitTest 方法对包含文本的生成的 DrawingVisual 进行测试时,它不会区分字符的空间和黑色像素。它为角色边界框中的每个点提供命中。有办法做到这一点吗?

Is there a way to hit test the pixels of characters in wpf? I want to be able to get a hit for the dot of the character 'i' but don't get a hit when I click the space between the dot and the line of 'i'. I tried to do it using DrawingContext.DrawText method and but when I hit test against the resulting DrawingVisual, which contains the text, using VisualTreeHelper.HitTest method it doesn't differentiate the space and the black pixels of the character. It gives a hit for every point in the bounding box of a character. Is there a way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

榕城若虚 2024-10-14 01:42:17

我找到了解决方案。为此,您必须转到较低级别的 GlyphRunDrawing。使用此处的代码并替换 GeometryDrawing使用 GlyphRunDrawing。然后获取 GeometryGroup,其中包含每个字符作为 Geometry,并使用代码进行命中测试:

GeometryGroup ggroup = (GeometryGroup)((GlyphRunDrawing)drawing).GlyphRun.BuildGeometry();
if(ggroup.FillContains(pt))
{
    Debug.WriteLine("Contains point " + pt.ToString());
}

I found the solution. To do this you have to go to lower level to GlyphRunDrawing. Use the code here and substitute GeometryDrawing with GlyphRunDrawing. Then get the GeometryGroup, which contains each character as Geometry, and do the hit testing with the code:

GeometryGroup ggroup = (GeometryGroup)((GlyphRunDrawing)drawing).GlyphRun.BuildGeometry();
if(ggroup.FillContains(pt))
{
    Debug.WriteLine("Contains point " + pt.ToString());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文