摘要: /** * 把文字转为图片 * * @param text * 要写的内容 * @throws IOException */ public static void textToImg(String text) throws IOException { int len = text.length(); int fontSize = 1000; int width = len * fontSize; Font font = new Font("楷体", Font2D... 阅读全文
posted @ 2013-09-13 17:38 xusir 阅读(739) 评论(1) 推荐(1)
自成e家