YetiForceCompany/YetiForcePDF

View on GitHub
examples/nesteBlockPaddingWidth.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

$loader = require '../vendor/autoload.php';
$document = (new YetiForcePDF\Document())->init();
$document->loadHtml(file_get_contents('nestedBlockPaddingWidth.html'));
$pdfFile = $document->render();
file_put_contents('nestedBlockPaddingWidth.pdf', $pdfFile);