Reflex iTextでは、グラフとQRコードをPNGファイルで出力できます。
<?xml version="1.0" encoding="UTF-8" ?>
<piechart
title="世界の人口(単位:億人)"
legend="true"
width="150"
height="180"
category="country"
value="population" />

<?xml version="1.0" encoding="UTF-8" ?>
<qrcode
value="$qrCodeValue"
width="20"
height="20"
version="10"
errorcorrectionlevel="L"
cellsize="4"
margin="32" />

Reflex iTextでは、テンプレートとなるPDFファイルを指定することができます。
デザインをPDFファイルで作成し、変動するデータをエンティティで指定、データの配置をテンプレートで指定する といった使い方ができます。
<?xml version="1.0" encoding="UTF-8" ?>
<html>
<head>
</head>
<body>
<div class="_page" style="pagesize:B5; orientation:landscape;">
<table>
<tr>
<td>
<a href="http://reflex.sourceforge.jp/index.html">
<span id="greeting" size="18" style="style:underline; color:#0000FF;" />
</a>
</td>
</tr>
</table>
</div>
</body>
</html>

