PHP code example of icybee / module-thumbnailer
1. Go to this page and download the library: Download icybee/module-thumbnailer 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/ */
icybee / module-thumbnailer example snippets
namespace ICanBoogie\Modules\Thumbnailer;
$versions = $app->thumbnailer_versions;
$versions['popover'] = [ 'width' => 420, 'height' => 340 ];
# or
$versions['popover'] = 'w:420;h:340';
# or
$versions['popover'] = '{"w":"420","h":"340"}';
# or
$versions['popover'] = '420x340';
$thumbnail = new Thumbnail('/images/madonna.jpeg', 'popover');
echo $thumbnail; // <img src="/api/thumbnail/420x340/fill?s=%2Fimages%2Fmadonna.jpeg&v=popover" alt="" width="420" height="340" class="thumbnail thumbnail--popover" />
echo $thumbnail->url; // /api/thumbnail/420x340/fill?s=%2Fimages%2Fmadonna.jpeg&v=popover
$thumbnail = new Thumbnail('/images/madonna.jpeg', '64x64.png');
echo $thumbnail; // <img src="/api/thumbnail/64x64/fill.png&s=%2Fimages%2Fmadonna.jpeg" alt="" width="64" height="64" class="thumbnail" />
echo $thumbnail->url; // /api/thumbnail/64x64/fill.png&s=%2Fimages%2Fmadonna.jpeg