如何使用 PHP 向现有 PDF 文件添加水印?

新手上路,请多包涵

我需要使用 PHP 向现有 PDF 文件添加水印。我在谷歌上搜索过它,但找不到任何合适的图书馆。

我找到了创建 PDF 文件预览缩略图的 fpdf 库,但我不知道它是否为现有 PDF 文件添加了水印。谁能推荐一个 PHP 库而不是可以显示预览并向现有 PDF 文件添加水印的库?

原文由 Yasir 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 826
1 个回答

只是一个使用 FPDF 和 FPDI 类的简单示例:

 function PlaceWatermark($file, $text, $xxx, $yyy, $op, $outdir) {
    require_once('fpdf.php');
    require_once('fpdi.php');
    $name = uniqid();
    $font_size = 5;
    $ts=explode("\n",$text);
    $width=0;
    foreach ($ts as $k=>$string) {
        $width=max($width,strlen($string));
    }
    $width  = imagefontwidth($font_size)*$width;
    $height = imagefontheight($font_size)*count($ts);
    $el=imagefontheight($font_size);
    $em=imagefontwidth($font_size);
    $img = imagecreatetruecolor($width,$height);
    // Background color
    $bg = imagecolorallocate($img, 255, 255, 255);
    imagefilledrectangle($img, 0, 0,$width ,$height , $bg);
    // Font color
    $color = imagecolorallocate($img, 0, 0, 0);
    foreach ($ts as $k=>$string) {
        $len = strlen($string);
        $ypos = 0;
        for($i=0;$i<$len;$i++){
            $xpos = $i * $em;
            $ypos = $k * $el;
            imagechar($img, $font_size, $xpos, $ypos, $string, $color);
            $string = substr($string, 1);
        }
    }
    imagecolortransparent($img, $bg);
    $blank = imagecreatetruecolor($width, $height);
    $tbg = imagecolorallocate($blank, 255, 255, 255);
    imagefilledrectangle($blank, 0, 0,$width ,$height , $tbg);
    imagecolortransparent($blank, $tbg);
    if ( ($op < 0) OR ($op >100) ){
        $op = 100;
    }
    imagecopymerge($blank, $img, 0, 0, 0, 0, $width, $height, $op);
    imagepng($blank,$name.".png");
    // Created Watermark Image
    $pdf = new FPDI();
    if (file_exists("./".$file)){
        $pagecount = $pdf->setSourceFile($file);
    } else {
        return FALSE;
    }
    $tpl = $pdf->importPage(1);
    $pdf->addPage();
    $pdf->useTemplate($tpl, 1, 1, 0, 0, TRUE);
    //Put the watermark
    $pdf->Image($name.'.png', $xxx, $yyy, 0, 0, 'png');
    if ($outdir === TRUE){
        return $pdf->Output();
    } else {
        return $pdf;
    }
}

PlaceWatermark("filename.pdf", "This is a lazy, but still simple test\n This should stand on a new line!", 30, 120, 100,TRUE);

用法: PlaceWatermark($filename, $text, $x, $y, $opacity, $directoutput);

$filename – 要放置水印的PDF路径

$text – 您要添加的水印文本

$x – 要放置水印的 x 坐标

$y – 你想要放置水印的y坐标

$opacity – 文本的不透明度

$directoutput – 如果函数为 TRUE 将输出一个 PDF 文件,否则它将返回 $pdf

正如我已经说过的,这是一个非常快速和肮脏的例子,它需要一些改进。

原文由 ePirat 发布,翻译遵循 CC BY-SA 3.0 许可协议

推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏