e654. 获得文本的缩略图时间:2023-03-09 17:10:14 Shape getTextShape(Graphics2D g2d, String str, Font font) { FontRenderContext frc = g2d.getFontRenderContext(); TextLayout tl = new TextLayout(str, font, frc); return tl.getOutline(null); } Related Examples