PHP code example of cmouleyre / next-gen-picture
1. Go to this page and download the library: Download cmouleyre/next-gen-picture 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/ */
cmouleyre / next-gen-picture example snippets
$ngp = new NextGenPicture([
'relative_path' => '../cache/',
'cache_dir' => __DIR__ . '/../cache/',
'force_generate' => false,
'compatibility' => true,
'quality' => 90,
'max_pixel_ratio' => 3
]);
$html = $ngp->load('sample.jpg')
->setMaxDisplaySize([800, 600])
->setResponsive([1024 => 375])
->setAlt('Alt of the picture')
->setId('picture-id')
->setClass(['picture-first-class', 'picture-second-class'])
->setAttributes(['data-first' => 'toto', 'data-second' => 'tata'])
->display();