spatie / laravel-screenshot
Take screenshots of web pages in Laravel apps
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/spatie/laravel-screenshot
Requires
- php: ^8.4
- illuminate/contracts: ^12.0
- spatie/laravel-package-tools: ^1.16.1
- spatie/temporary-directory: ^2.2.1
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.13.7
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^10.0
- pestphp/pest: ^3.7
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.1
- phpstan/extension-installer: ^1.3.1
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- spatie/browsershot: ^5.2
- spatie/invade: ^2.1
- spatie/laravel-ray: ^1.43.4
- spatie/pest-expectations: ^1.5
Suggests
- spatie/browsershot: Required for the Browsershot driver (^4.0|^5.0)
README
This package provides a simple way to take screenshots of web pages in Laravel apps. It uses a driver-based architecture, so you can choose between Browsershot (Chromium) and Cloudflare Browser Rendering.
Screenshots are taken with beautiful defaults: 1280x800 viewport, 2x device scale factor (retina), PNG format, and waiting for network idle.
Here's a quick example:
use Spatie\LaravelScreenshot\Facades\Screenshot; Screenshot::url('https://example.com')->save('screenshot.png');
You can customize the viewport, format, and capture options:
use Spatie\LaravelScreenshot\Facades\Screenshot; Screenshot::url('https://example.com') ->width(1920)->height(1080) ->quality(80) ->save('screenshot.jpg');
You can test your screenshots too:
use Spatie\LaravelScreenshot\Facades\Screenshot; it('can take a screenshot', function () { Screenshot::fake(); $this->get(route('screenshot'))->assertOk(); Screenshot::assertSaved(function ($screenshot) { return $screenshot->url === 'https://example.com'; }); });
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Documentation
All documentation is available on our documentation site.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.