【发布时间】:2010-11-30 09:34:13
【问题描述】:
dompdf的php5类生成的PDF可以加水印吗?
如果是的话;我该怎么做?
如果没有;还有其他方法吗?
【问题讨论】:
dompdf的php5类生成的PDF可以加水印吗?
如果是的话;我该怎么做?
如果没有;还有其他方法吗?
【问题讨论】:
如示例 demo_01.html 中所述(在页面底部)
<script type="text/php">
$pdf->open_object();
$w = $pdf->get_width();
$h = $pdf->get_height();
$pdf->close_object();
$pdf->page_text(110, $h - 240, "DELETED", Font_Metrics::get_font("verdana", "bold"),110, array(0.85, 0.85, 0.85), 0, -52);
</script>
这将在您的文档上添加一个大的“DELETED”字符串
【讨论】: