1. Go to this page and download the library: Download anahkiasen/illuminage 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/ */
anahkiasen / illuminage example snippets
'Illuminage\IlluminageServiceProvider',
'Illuminage' => 'Illuminage\Facades\Illuminage',
// This will create a cropped 200x300 thumb, cache it, and display it in an image tag
echo Illuminage::thumb('image.jpg', 200, 300)
// or
echo Illuminage::image('image.jpg')->thumbnail(200, 300)
// Shortcuts
echo Illuminage::square('image.jpg', 300)