YetiForceCompany/YetiForcePDF

View on GitHub
examples/SimpleColor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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