PHP code example of aspendigital / oc-resizer-plugin

1. Go to this page and download the library: Download aspendigital/oc-resizer-plugin 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/ */

    

aspendigital / oc-resizer-plugin example snippets


<img src="{{ file.getThumb(200, 200) }}">

<img src="{{ file | smart_resize(200, 200) }}">

<img src="{{ '/media_file.jpg' | smart_resize(600, 400, { 'quality': 95 }) }}">
<img src="{{ '/storage/app/uploads/test_upload.jpg' | smart_resize(350, 350, { 'mode': 'crop', 'quality': 95 }) }}">

$resizedUrl = smartResize('/media/file.jpg', 300, 200);