在现有的pdf上添加文本/图像水印

时间:2019-08-10 10:44:46

标签: php codeigniter pdf watermark

我的目录中有不带水印的pdf,因此我不想显示文件结构,因此我使用了readfile($ path);方法,

现在,在显示pdf之前,我无法在pdf上应用水印。

我尝试了pdf等多种方法来测试解析器,但这并不能解决我的问题

在我在php中使用的代码下面

ob_clean();
flush();
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=filename.pdf");
@readfile($path);
exit;

0 个答案:

没有答案