1. Go to this page and download the library: Download jacksleight/statamic-raster 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/ */
jacksleight / statamic-raster example snippets
/* routes/web.php */
use JackSleight\StatamicRaster\Raster;
use Statamic\Facades\Entry;
Route::get('/blog/{entry}/hero', function (Request $request, $entry) {
return Raster::make('blog.hero')
->content(Entry::find($entry))
->width(1000);
})->name('blog.hero');
use JackSleight\StatamicRaster\Raster;
Raster::browsershot(fn ($browsershot) => $browsershot
->setOption('args', ['--disable-web-security'])
->waitUntilNetworkIdle()
);