gkimpson / url2png-laravel
Laravel wrapper for url2png API for generating website thumbnails, an api key & secret key is required from https://www.url2png.com/
Fund package maintenance!
gkimpson
Requires
- php: ^8.1
Requires (Dev)
- laravel/pint: ^1.2
- phpunit/phpunit: ^9.5
- spatie/ray: ^1.28
This package is auto-updated.
Last update: 2025-03-09 07:04:53 UTC
README
https://packagist.org/packages/gkimpson/url2png-laravel
Laravel package for URL2PNG.com - an API for generating website thumbnails (tested on Laravel 9.x) You will need to apply for an account from https://www.url2png.com and get yourself an api key & secret to generate thumbnails.
Installation
You can install the package via composer:
composer require gkimpson/url2png-laravel
Usage
// this would ideally be in your .env just added this for here ease, apply for these keys from URL2PNG.com $url2pngConfig = [ 'apiKey' => 'P5023B6XXXXXXX', 'secret' => 'S5F9C03XXXXXXX', ]; $url2png = new Url2pngLaravelClass($url2pngConfig); // These options are optional - if none are set it will use the default values $options = array( 'unique' => round(time()/60/60,0); # Limit capture to once per hour 'viewport' => '1280x1024'; # Max 5000x5000; Default 1280x1024 'fullpage' => 'false', # [true,false] Default: false 'thumbnail_max_width' => 'false'; # scaled image width in pixels; Default no-scaling. ); echo $url2png->generate('https://www.github.com', $options);
This will output a URL similar to this below which will be the screenshot based on the url and parameters set (if no options set it will use default settings)
https://api.url2png.com/v6/apikey/xxxsecretkeyxxx/png/?url=https%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fuk-politics-64434202
Testing
composer test --(tests to come)
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.