This package is used to generate PDFs using a table of data with one or many rows, and a template that gets applied for each row.
The goal is to allow the usage of any templating engine with any PDF generation library, by abstracting them as drivers and trying to ensure an idempotent output no matter what driver the user picks.
use RowBloom\ChromePhpRenderer\ChromePhpRenderer;
use RowBloom\RowBloom\DataLoaders\FolderDataLoader;
use RowBloom\RowBloom\DataLoaders\JsonDataLoader;
use RowBloom\RowBloom\Interpolators\PhpInterpolator;
use RowBloom\CssLength\PaperFormat;
use RowBloom\RowBloom\Options;
use RowBloom\RowBloom\Support;
$support = (new Support)
->registerDataLoaderDriver(FolderDataLoader::NAME, FolderDataLoader::class)
->registerDataLoaderDriver(JsonDataLoader::NAME, JsonDataLoader::class)
->registerInterpolatorDriver(PhpInterpolator::NAME, PhpInterpolator::class)
->registerRendererDriver(ChromePhpRenderer::NAME, ChromePhpRenderer::class);
$r = rowBloom(support: $support)->rowBloom;
$r->setInterpolator('PHP')->setRenderer('Chrome')
->addTable([
['title' => 'Title1', 'body' => 'body1'],
['title' => 'Title2', 'body' => 'body2'],
])
->setTemplate('
<h1><?= $title ?></h1>
<div><?= $body ?></div>
')
->addCss('h1 {color: red;}')
->tapOptions(function (Options $options) {
$options->format = PaperFormat::_A4;
$options->displayHeaderFooter = true;
$options->margin = '1 in';
})
->save(__DIR__.'/foo.pdf');
composer require row-bloom/row-bloom
Head over to the full documentation.
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.