| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/abyogasms.com/vendor/tecnickcom/tc-lib-pdf/examples/ |
Upload File : |
<?php
/**
* E066_import_document_append.php
*
* @since 2026-05-03
* @category Library
* @package Pdf
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2002-2026 Nicola Asuni - Tecnick.com LTD
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-pdf
*
* This file is part of tc-lib-pdf software library.
*/
// NOTE: run make deps fonts in the project root to generate the dependencies and example fonts.
// autoloader when using Composer
require __DIR__ . '/../vendor/autoload.php';
// define fonts directory
\define('K_PATH_FONTS', \realpath(__DIR__ . '/../vendor/tecnickcom/tc-lib-pdf-font/target/fonts'));
// ---- Step 1: build a multi-page source PDF ----
$src = new \Com\Tecnick\Pdf\Tcpdf();
$src->setCreator('tc-lib-pdf');
$src->setAuthor('Nicola Asuni');
$src->setSubject('tc-lib-pdf example: 066 source');
$src->setTitle('Import Document Append - Source');
$src->setKeywords('TCPDF tc-lib-pdf import document append source template');
$src->setPDFFilename('066_import_document_append_src.pdf');
$bfont = $src->font->insert($src->pon, 'helvetica', '', 14);
$pages = ['First page', 'Second page', 'Third page'];
foreach ($pages as $idx => $label) {
$srcPage = $src->addPage();
$src->page->addContent($bfont['out']);
$src->addHTMLCell(
html: '<h2>Source: '
. \htmlspecialchars($label)
. '</h2>'
. '<p>Page '
. ($idx + 1)
. ' of '
. \count($pages)
. ' in the source document.</p>',
posx: 15,
posy: 20,
width: 160,
);
}
$sourcePdfData = $src->getOutPDFString();
// ---- Step 2: create destination document with an intro page ----
$pdf = new \Com\Tecnick\Pdf\Tcpdf();
$pdf->setCreator('tc-lib-pdf');
$pdf->setAuthor('Nicola Asuni');
$pdf->setSubject('tc-lib-pdf example: 066');
$pdf->setTitle('Import Document Append - Destination');
$pdf->setKeywords('TCPDF tc-lib-pdf import append merge destination template');
$pdf->setPDFFilename('066_import_document_append.pdf');
$bfont = $pdf->font->insert($pdf->pon, 'helvetica', '', 12);
$pdf->addPage();
$pdf->page->addContent($bfont['out']);
$pdf->addHTMLCell(
html: '<h1>Document append demo</h1>' . '<p>The following pages are imported from a separate source document.</p>',
posx: 15,
posy: 20,
width: 160,
);
// ---- Step 3: register source and append all its pages ----
$sourceId = $pdf->setImportSourceData($sourcePdfData);
$pageCount = $pdf->getSourcePageCount($sourceId);
// appendDocument adds one new destination page per source page and places the template.
$templates = $pdf->appendDocument($sourceId);
// ---- Step 4: add a closing page with a summary ----
$pdf->addPage();
$pdf->page->addContent($bfont['out']);
$pdf->addHTMLCell(
html: '<p>Appended ' . \count($templates) . ' page(s) from source (' . $pageCount . ' available).</p>',
posx: 15,
posy: 20,
width: 160,
);
// Render
$rawpdf = $pdf->getOutPDFString();
$pdf->renderPDF(rawpdf: $rawpdf);