文本2D渲染

MUEDSA,Development

相关文档

Note

JavaSE内置的逻辑字体

内置的物理字体

这些字体不依赖与操作系统,可以直接使用,但并不支持中文。

测量字体

// get metrics from the graphics
FontMetrics metrics = graphics.getFontMetrics(font);
// get the height of a line of text in this
// font and render context
int hgt = metrics.getHeight();
// get the advance of my text in this font
// and render context
int adv = metrics.stringWidth(text);
// calculate the size of a box to hold the
// text with some padding.
Dimension size = new Dimension(adv+2, hgt+2);
Font Metrics

可能用到的类

© MUEDSA BLOG.RSS