在往图片上写字时,图片宽度是已知的,如果想实现文字居中的效果,需要知道文字的宽度并且是像素为单位的,其实,很简单
InputStream imagein = new BufferedInputStream(new FileInputStream("/xxxx.png"));
BufferedImage bi = ImageIO.read(imagein);
Graphics g = bi.getGraphics();
final Font font= new Font("新宋体", Font.BOLD, 45);
String something = "any str you want"
//最终的是这一步
int width= g.getFontMetrics(font).stringWidth(something );
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20252.html