| 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
/**
* E067_import_page_region_nup.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 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 4-page source document ----
$src = new \Com\Tecnick\Pdf\Tcpdf();
$src->setCreator('tc-lib-pdf');
$src->setAuthor('Nicola Asuni');
$src->setSubject('tc-lib-pdf example: 067 source');
$src->setTitle('Import Page Region N-up - Source');
$src->setKeywords('TCPDF tc-lib-pdf import page region nup source template');
$src->setPDFFilename('067_import_page_region_nup_src.pdf');
$srcFont = $src->font->insert($src->pon, 'helvetica', '', 14);
$cards = [
['title' => 'Card A', 'color' => '#ffd7b5', 'text' => 'Quarterly sales summary'],
['title' => 'Card B', 'color' => '#b8f2e6', 'text' => 'Regional performance map'],
['title' => 'Card C', 'color' => '#cde7ff', 'text' => 'Customer retention trends'],
['title' => 'Card D', 'color' => '#f3d9fa', 'text' => 'Fulfillment and logistics KPIs'],
];
foreach ($cards as $idx => $card) {
$src->addPage();
// Colored background fill.
$bgStyle = [
'all' => [
'lineWidth' => 0,
'lineCap' => 'butt',
'lineJoin' => 'miter',
'dashArray' => [],
'dashPhase' => 0,
'lineColor' => $card['color'],
'fillColor' => $card['color'],
],
];
$src->page->addContent($src->graph->getRect(0, 0, 210, 297, 'F', $bgStyle));
// Render page content.
$src->page->addContent($srcFont['out']);
$src->addHTMLCell(
html: '<h2>'
. \htmlspecialchars($card['title'])
. '</h2>'
. '<p>'
. \htmlspecialchars($card['text'])
. '</p>'
. '<p>Page '
. ($idx + 1)
. ' of '
. \count($cards)
. '</p>',
posx: 20,
posy: 40,
width: 170,
);
}
$sourcePdfData = $src->getOutPDFString();
// ---- Step 2: import and compose a 2x2 N-up destination page ----
$pdf = new \Com\Tecnick\Pdf\Tcpdf();
$pdf->setCreator('tc-lib-pdf');
$pdf->setAuthor('Nicola Asuni');
$pdf->setSubject('tc-lib-pdf example: 067');
$pdf->setTitle('Import Page Region N-up - Destination');
$pdf->setKeywords('TCPDF tc-lib-pdf import page region nup destination imposition');
$pdf->setPDFFilename('067_import_page_region_nup.pdf');
$labelFont = $pdf->font->insert($pdf->pon, 'helvetica', '', 10);
$sourceId = $pdf->setImportSourceData($sourcePdfData);
$pdf->addPage();
$pdf->page->addContent($labelFont['out']);
$margin = 12.0;
$gap = 6.0;
$gridWidth = 210.0 - (2 * $margin) - $gap;
$gridHeight = 297.0 - (2 * $margin) - $gap;
$cellWidth = $gridWidth / 2.0;
$cellHeight = $gridHeight / 2.0;
$positions = [
[$margin, $margin],
[$margin + $cellWidth + $gap, $margin],
[$margin, $margin + $cellHeight + $gap],
[$margin + $cellWidth + $gap, $margin + $cellHeight + $gap],
];
$borderStyle = [
'all' => [
'lineWidth' => 0.3,
'lineCap' => 'butt',
'lineJoin' => 'miter',
'dashArray' => [],
'dashPhase' => 0,
'lineColor' => '#404040',
'fillColor' => '',
],
];
foreach ($positions as $idx => [$x, $y]) {
$tpl = $pdf->importPage(sourceId: $sourceId, pageNum: $idx + 1, options: ['box' => 'CropBox', 'cache' => true]);
$pdf->useImportedPage(tpl: $tpl, xpos: $x, ypos: $y, width: $cellWidth, height: $cellHeight, options: [
'keepAspectRatio' => true,
'align' => 'CC',
'clip' => true,
]);
// Draw outer cell frame over the imported content.
$pdf->page->addContent($pdf->graph->getRect($x, $y, $cellWidth, $cellHeight, 'D', $borderStyle));
$pdf->page->addContent($labelFont['out']);
$pdf->addHTMLCell(
html: '<span style="font-size:9px">Imported page ' . ($idx + 1) . '</span>',
posx: $x + 2,
posy: $y + 2,
width: 40,
);
}
$rawpdf = $pdf->getOutPDFString();
$pdf->renderPDF(rawpdf: $rawpdf);