Java 中 Canvas.drawText 从右到左

发布于 2024-10-31 05:50:28 字数 50 浏览 1 评论 0原文

如何使用 Canvas.drawText 从右到左(即相反的顺序)输出文本?有办法吗?

How can I output text Right to Left (i.e. in reverse order) using Canvas.drawText ? Is there a way?

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

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

发布评论

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

评论(2

可遇━不可求 2024-11-07 05:50:28

textPaint 对象中设置 Paint.Align 属性(如果设置为 RIGHT)——文本将绘制到 x,y 原点的左侧:

textPaint.setTextAlign(Paint.Align.RIGHT);
canvas.drawText("your text here", getRight(), getY()/2, textPaint);

Set Paint.Align property in your textPaint object, if you set it RIGHT -- The text is drawn to the left of the x,y origin:

textPaint.setTextAlign(Paint.Align.RIGHT);
canvas.drawText("your text here", getRight(), getY()/2, textPaint);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文