PHP Classes

File: examples/pdfFromHtmlFile.php

Recommend this page to a friend!
  Classes of Dawood Ikhlaq   PHP Chrome PDF   examples/pdfFromHtmlFile.php   Download  
File: examples/pdfFromHtmlFile.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Chrome PDF
Generate PDF or images of HTML pages with Chrome
Author: By
Last change: Apply fixes from StyleCI
Date: 6 years ago
Size: 233 bytes
 

Contents

Class file image Download
<?php

include '../vendor/autoload.php';

use
dawood\phpChrome\Chrome;

$chrome=new Chrome(null, '/usr/bin/google-chrome');
$chrome->useHtmlFile(__DIR__.'/index.html');
print
"Pdf successfully generated :".$chrome->getPdf().PHP_EOL;