本篇內(nèi)容主要講解“php怎么給pdf加上文字水印和圖片水印”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php怎么給pdf加上文字水印和圖片水印”吧!
下花園網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),下花園網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為下花園成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的下花園做網(wǎng)站的公司定做!
php給pdf加上水印
環(huán)境
php5.5.12
fpdi-1.5.2
fpdf-1.7
原理
利用fpdi來加載已知pdf文件,用fpdf對pdf進(jìn)行操作
注意事項
免費的fpdi只支持處理pdf1.4及以下版本,1.5以上就需要用到FPDI PDF-Parser插件
使用方法
fpdi-1.5.2
fpdf-1.7
1.文字水印 word.php
setSourceFile('more.pdf'); // iterate through all pages for ($pageNo = 1; $pageNo <= $pageCount; $pageNo++) { // import a page $templateId = $pdf->importPage($pageNo); // get the size of the imported page $size = $pdf->getTemplateSize($templateId); // create a page (landscape or portrait depending on the imported page size) if ($size['w'] > $size['h']) $pdf->AddPage('L', array($size['w'], $size['h'])); else $pdf->AddPage('P', array($size['w'], $size['h'])); // use the imported page $pdf->useTemplate($templateId); $pdf->SetFont('Arial','B','12'); // sign with current date $pdf->SetXY(0, 0); // you should keep testing untill you find out correct x,y values $pdf->Write(7, date('Y-m-d')); } $pdf->Output('word.pdf');
2.圖片水印 pic.php
setSourceFile('more.pdf'); // iterate through all pages for ($pageNo = 1; $pageNo <= $pageCount; $pageNo++) { // import a page $templateId = $pdf->importPage($pageNo); // get the size of the imported page $size = $pdf->getTemplateSize($templateId); // create a page (landscape or portrait depending on the imported page size) if ($size['w'] > $size['h']) $pdf->AddPage('L', array($size['w'], $size['h'])); else $pdf->AddPage('P', array($size['w'], $size['h'])); // use the imported page $pdf->useTemplate($templateId); // Place the graphics $pdf->image("test.png", 75, 85, 50); } $pdf->Output('pic.pdf');
3.項目地址
pdf_watermark https://github.com/laiyuxiang/pdf_watermark/
到此,相信大家對“php怎么給pdf加上文字水印和圖片水印”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!