本文概述
- 1.安装pdfmerger
- 2.使用库
在本文中, 我们将向你展示如何使用PDFMerger库将多个PDF合并为一个。
1.安装pdfmergerPDFMerger依靠Setasign的fpdf和fpdi类(作为依赖项自动安装)。原始库还有其他版本, 因为原始库托管在Codeplex中, 所以已移植到PHP5中, 但是它们没有最低的稳定性级别(它们可以工作, 但不适用于作曲家)。与composer一起使用的库派生器是@rguedes创建的, 它对于Symfony来说, 要使用的任何依赖项都需要最低的稳定性级别(不是dev-master)。该叉甚至也适用于Laravel。要在symfony项目中继续安装软件包, 请打开终端, 切换到项目目录, 然后使用composer安装库:
composer require rguedes/pdfmerger
安装之后, 你将能够使用PDFMerger类及其方法。有关此库的fork的更多信息, 请访问Github上的存储库。
2.使用库该库的用法非常简单明了, 你可以创建PDF合并的实例。此类允许你使用addPDF方法合并多个文件, 并最终使用merge方法生成合并结果。你可以选择将哪些PDF页面添加到最终页面中, 并决定如何以及在何处生成最终PDF。
指定要合并的页面
PDFMerger类允许你使用addPDF方法根据需要合并多个PDF, 你只需要提供路径作为第一个参数, 并使用第二个参数指示文件的哪些页面应合并到最终文件中即可, 串。例如, 你可以合并PDF的所有页面:
$pdf = new PDFMerger();
// Add all the pages of the PDF to merge $pdf->
addPDF("somePdfToMerge.pdf", 'all');
【如何在Symfony 3中合并多个PDF】通过提供用逗号分隔的编号来具体指定所需的页面:
$pdf = new PDFMerger();
// Add only the pages 1, 3 and 5$pdf->
addPDF("somePdfToMerge.pdf", '1, 3, 5');
或使用范围, 例如从第5页到第10页:
$pdf = new PDFMerger();
// Add only the pages from 5 to 10$pdf->
addPDF("somePdfToMerge.pdf", '5-10');
合并模型
使用merge方法, 你将生成一个PDF, 其中包含添加的文件(每个PDF的指定页面)。该文件可以根据你的需要进行存储或作为响应返回。需要将处理PDF的方法作为方法合并的第一个参数提供, 该参数的可能值为:浏览器, 下载, 字符串或文件。作为第二个参数, 将保存PDF的路径(如果使用文件作为方法)或将用于返回PDF的PDF名称(使用浏览器或下载):
产生直接下载如果你不需要将PDF保存在任何地方, 而只是将其生成并作为响应返回, 则可以使用下载标识符强制直接下载生成的PDF:
<
?phpnamespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
// Require PDF class of the libraryuse PDFMerger;
class DefaultController extends Controller{/*** @Route("/", name="homepage")*/public function indexAction(){// absolute path of the PDFs to merge$pdfFile1Path = $this->
get('kernel')->
getRootDir() . '/../web/file1.pdf';
$pdfFile2Path = $this->
get('kernel')->
getRootDir() . '/../web/file2.pdf';
$pdfFile3Path = $this->
get('kernel')->
getRootDir() . '/../web/file3.pdf';
// Create an instance of PDFMerger$pdf = new PDFMerger();
// Add 2 PDFs to the final PDF$pdf->
addPDF($pdfFile1Path, 'all');
$pdf->
addPDF($pdfFile3Path, '1, 3, 5');
// Generate download of "mergedpdf.pdf"$pdf->
merge('download', "mergedpdf.pdf");
}}
保存到文件中你可以将合并的结果存储到服务器中的文件中:
<
?phpnamespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
// Use the normal response classuse Symfony\Component\HttpFoundation\Response;
// Require PDF class of the libraryuse PDFMerger;
class DefaultController extends Controller{/*** @Route("/", name="homepage")*/public function indexAction(){// absolute path of the PDFs to merge$pdfFile1Path = $this->
get('kernel')->
getRootDir() . '/../web/file1.pdf';
$pdfFile2Path = $this->
get('kernel')->
getRootDir() . '/../web/file2.pdf';
// Create an instance of PDFMerger$pdf = new PDFMerger();
// Add 2 PDFs to the final PDF$pdf->
addPDF($pdfFile1Path, 'all');
$pdf->
addPDF($pdfFile2Path, 'all');
// Merge the files into a file in some directory$pathForTheMergedPdf = $this->
get('kernel')->
getRootDir(). '/../web/result.pdf';
$pdf->
merge('file', $pathForTheMergedPdf);
return new Response("Files succesfully merged !");
}}
检索结果pdf的二进制内容如果你需要检索生成的文件(二进制数据)的内容而不将其保存在任何地方, 则可以使用字符串输出方法将内容作为变量检索。在这种情况下, 我们将返回二进制内容作为带有PDF标头的响应(以在浏览器中查看)。你也可以根据需要使用浏览器类型:
<
?phpnamespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
// Use Response class of Symfonyuse Symfony\Component\HttpFoundation\Response;
// Require PDF class of the libraryuse PDFMerger;
class DefaultController extends Controller{/*** @Route("/", name="homepage")*/public function indexAction(){// absolute path of the PDFs to merge$pdfFile1Path = $this->
get('kernel')->
getRootDir() . '/../web/file1.pdf';
$pdfFile2Path = $this->
get('kernel')->
getRootDir() . '/../web/file2.pdf';
$pdfFile3Path = $this->
get('kernel')->
getRootDir() . '/../web/file3.pdf';
// Create an instance of PDFMerger$pdf = new PDFMerger();
// Add 2 PDFs to the final PDF adding all their pages$pdf->
addPDF($pdfFile1Path, 'all');
$pdf->
addPDF($pdfFile2Path, 'all');
// Merge the files and retrieve its PDF binary content$binaryContent = $pdf->
merge('string', "mergedpdf.pdf");
// Send it as response to the browser// (view in the browser as well)// which is the same as // $pdf->
merge('browser', "mergedpdf.pdf");
$response = new Response($binaryContent);
$response->
headers->
set('Content-type' , 'application/pdf');
return $response;
}}
编码愉快!
推荐阅读
- 如何在你的Symfony 3表单中检索未映射字段的值
- 如何在WinForms中使用Barcodelib库使用C#从具有不同格式的字符串中创建条形码图像
- Winforms跨线程操作无效(从不是在其上创建线程的线程访问的控件”控件名”)
- 如何在Windows中使用Swift编程语言
- 每个Twig开发人员都应该能够回答的20个问题
- 如何使用WinForms中的OpenCVSharp库和带有C#的网络摄像机拍摄快照
- 如何在C#中使用AES加密算法对文件进行加密和解密
- 如何使用Visual Studio Code的便携式版本
- 缺少来自android appcompat v7-21.0.0的样式