📄 e653. drawing a paragraph of text.txt
字号:
In order to change the font of the text, you need to supply an attributed string to the LineBreakMeasurer. See e655 Drawing Text with Mixed Styles for an example.
public void drawParagraph(Graphics2D g, String paragraph, float width) {
LineBreakMeasurer linebreaker = new LineBreakMeasurer(
new AttributedString(paragraph).getIterator(), g.getFontRenderContext());
float y = 0.0f;
while (linebreaker.getPosition() < paragraph.length()) {
TextLayout tl = linebreaker.nextLayout(width);
y += tl.getAscent();
tl.draw(g, 0, y);
y += tl.getDescent() + tl.getLeading();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -