获取 SWT 文本小部件中各个字符的 x,y 坐标

发布于 2024-08-06 10:27:17 字数 65 浏览 4 评论 0原文

如果我在 SWT 上以特定字体/样式写“此文本”,我需要“t”“h”“i”“s”等的单独坐标。有没有办法获得相同的?

If I write a text on SWT say "this text" in a particular font/style , I want the individual coords of 't' 'h' 'i' 's' and so on. Is there any way to obtain the same?

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

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

发布评论

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

评论(2

波浪屿的海角声 2024-08-13 10:27:17
Text text = new Text(parent, SWT.NONE);
text.setText("This");

GC gc = new GC(text);
int currentPixelsX = text.getBounds().x;
int currentPixelsY = text.getBounds().y;
for (int i = 0; i < text.getText().length(); i++) {
    System.out.println("X co-ordinate of " + text.getText().charAt(i) + ":" + currentPixelsX);
    System.out.println("Y co-ordinate of " + text.getText().charAt(i) + ":" + currentPixelsY);

    currentPixelsX = currentPixelsX + gc.getCharWidth(text.getText().charAt(i));
}

这给出了相对于文本框的父级的像素坐标。

Text text = new Text(parent, SWT.NONE);
text.setText("This");

GC gc = new GC(text);
int currentPixelsX = text.getBounds().x;
int currentPixelsY = text.getBounds().y;
for (int i = 0; i < text.getText().length(); i++) {
    System.out.println("X co-ordinate of " + text.getText().charAt(i) + ":" + currentPixelsX);
    System.out.println("Y co-ordinate of " + text.getText().charAt(i) + ":" + currentPixelsY);

    currentPixelsX = currentPixelsX + gc.getCharWidth(text.getText().charAt(i));
}

This gives the the pixel co-ordinates with respect to the parent of the text box.

满地尘埃落定 2024-08-13 10:27:17

可能这个代码片段可以帮助您计算一个字符

Probably this Snippet can help you calculating the individual length of a character

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文