日期:2014-05-17 浏览次数:20695 次
public static void main(String[] args) throws Exception {
createImage("中华人民共和国",new Font("宋体",Font.BOLD,18),new File("e:/a.png"));
createImage("中华人民",new Font("黑体",Font.BOLD,30),new File("e:/a1.png"));
createImage("中华人民共和国",new Font("黑体",Font.PLAIN,24),new File("e:/a2.png"));
}
//根据str,font的样式以及输出文件目录
public static void createImage(String str,Font font,File outFile) throws Exception{
//获取font的样式应用在str上的整个矩形
Rectangle2D r=font.getStringBounds(str, new FontRenderContext(AffineTransform.getScaleInstance(1, 1),false,false));
int unitHeight=(int)Math.floor(r.getHeight());//获取单个字符的高度
//获取整个str用了font样式的宽度这里用四舍五入后+1保证宽度绝对能容纳这个字符串作为图片的宽度
int width=(int)Math.round(r.getWidth())+1;
int height=unitHeight+3;//把单个字符的高度+3保证高度绝对能容纳字符串作为图片的高度
//创建图片
BufferedImage image=new BufferedImage(width,height,BufferedImage.TYPE_INT_BGR);
Graphics g=image.getGraphics();
g.setColor(Color.WHITE);
g.fillRect(0, 0, width, height);//先用白色填充整张图片,也就是背景
g.setColor(Color.black);//在换成黑色
g.setFont(font);//设置画笔字体
g.drawString(str, 0, font.getSize());//画出字符串
g.dispose();
ImageIO.write(image, "png", outFile);//输出png图片
}