1. Go to this page and download the library: Download typesetterio/typesetter library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
typesetterio / typesetter example snippets
$config = [
'title' => 'Benjamin Button',
'author' => 'F. Scott Fitzgerald',
'theme' => 'bb',
'toc-enabled' => true,
'toc-links' => true,
'toc-header' => 'Table of Contents',
'footer' => '{PAGENO}',
'markdown-extensions' => ['md', 'markdown'],
'observers' => [
new \Typesetterio\Typesetter\Observers\DefaultMarkdownConfiguration(),
new \Typesetterio\TypesetterCLI\Observers\FirstElementInChapterCSSClass(),
new \Typesetterio\TypesetterCLI\Observers\BreakToPageBreak(),
new \Typesetterio\TypesetterCLI\Observers\Credits(),
],
];
$config = new \Typsetterio\Typesetter\Config($config);
$service = new \Typesetterio\Typesetter\Typesetter();
$pdfContent = $service->generate($config);
file_put_contents('my-pdf.pdf', $pdfContent);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.