Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定 SWT 图形上下文和具有特定大小的字体,我如何获得单个字符的字形度量?
换句话说,我正在寻找java.awt.font.GlyphVector.
java.awt.font.GlyphVector
作为一种解决方法,我目前正在通过 AWT 加载相同的字体以获取此字形矢量 - 是否有更好的方法仅使用 SWT API?
如果宽度和高度足以满足您的目的,那么您可以使用GC.textExtent()特定字体来测量任何字符串的矩形区域。
GC.textExtent()