This package uses wkhtmltoimage software, so you should install this software on your server.
You can install the package via composer:
composer require tohidhabiby/htmltoimage
Use this code and set variables then you will have an image in your path.
use Tohidhabiby\HtmlToImage\HtmlToImage;
$htmlToImage = new HtmlToImage();
$htmlToImage->url($url)
->path($path)
->cropHeight($height) // optonal Set height for cropping
->cropWidth($width) // optonal Set width for cropping
->coordinateX($x) // optonal Set x coordinate for cropping
->coordinateY($y) // optonal Set y coordinate for cropping
->generate();
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.
This package was generated using the PHP Package Boilerplate.