PHP code example of airlst / headless-browser-client
1. Go to this page and download the library: Download airlst/headless-browser-client 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/ */
airlst / headless-browser-client example snippets
$headlessBrowser = new \AirLST\HeadlessBrowserClient\AirlstHeadlessBrowser('api-key-here');
$headlessBrowser->pdf(
'<p>html</p>', // html content
[10, 10, 10, 10] // margins
null, // Page size must be null otherwise it will override the custom width and height
'80mm', // width
'60mm', // height
);
$headlessBrowser->jpeg(
'<p>html</p>', // html content
80, // quality
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.