记录笔记---------------------------------------------
Java html 转 图片
1、通过freemarker 转 html
2、html转图片
freemarker模板:test.flt
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>sdsd</title>
</head>
<body>
<table width="300" border="1" cellspacing="0">
<tr>
<td colspan="3">姓名:${
username}</td>
</tr>
<tr>
<td>一班</td>
<td>2012-5-10</td>
<td>标题1</td>
</tr>
</table>
</body>
</html>
代码如下:
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
impo