繁体   English   中英

在使用dompdf的php5类创建的pdf中创建水印

[英]creating watermark in pdf's created with dompdf's php5 class

是否可以将水印放入由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”字符串

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM