PHP code example of unisharp / laravel-fileapi

1. Go to this page and download the library: Download unisharp/laravel-fileapi 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/ */

    

unisharp / laravel-fileapi example snippets


    composer 

    Unisharp\FileApi\FileApiServiceProvider::class,
    

    php artisan vendor:publish --tag=fileapi_config
    

    'path' => ['/images/event/', '/images/article/'],
    

    Route::get('/images/event/{filename}', function ($filename) {
        $entry = new \Unisharp\FileApi\FileApi('/images/event/');
        return $entry->getResponse($filename);
    });

    Route::get('/images/article/{filename}', function ($filename) {
        $entry = new \Unisharp\FileApi\FileApi('/images/article/');
        return $entry->getResponse($filename);
    });
    

    'default_thumbs' => ['S' => '96x96', 'M' => '256x256', 'L' => '480x480'],
    

    'compress_quality' => 90,
    

    'enable_api_upload' => false,
    

    'middlewares' => [],
    

use \Unisharp\FileApi\FileApi;
    
$fa = new FileApi(); # use default path (as '/images/')
$fa_event = new FileApi('/images/event/'); # initialize it by giving a base path
$fa_article = new FileApi('/images/article/'); # initiate another instance

    $file = $fa->save(\Input::file('main_image')); // => wfj412.jpg
    

    $file = $fa->save(\Input::file('main_image'), 'custom-file-name'); // => custom-file-name.jpg
    

    $file = $fa
        ->thumbs([
            'S' => '150x100',
            'M' => '300x200',
            'L' => '450x300'
            ])
        ->save(\Input::file('main_image'));
    

    $file = $fa->crop()->save(\Input::file('main_image'));
    

// large size
$fa->get('wfj412.jpg');
$fa->get('wfj412.jpg', 'L');
$fa->get('wfj412.jpg', FileApi::SIZE_LARGE);

// medium size
$fa->get('wfj412.jpg', 'M');
$fa->get('wfj412.jpg', FileApi::SIZE_MEDIUM);

// full size
$fa->get('wfj412.jpg', 'full');
$fa->get('wfj412.jpg', FileApi::SIZE_ORIGINAL);

// comporssed
$fa->get('wfj412.jpg', 'CP'); // => get image url of compressed one

$fa->drop('wfj412.jpg');

$fa->getPath('wfj412.jpg'); // => '/images/event/wfj412.jpg'

echo $fa->getUrl('wfjsdf.jpg'); // => "https://s3-ap-northeast-1.amazonaws.com/xxx/xxx/55c1e027caa62L.png"

    \Storage::get($fa->getPath('wfj412.jpg'));
    

    \Storage::put($fa->getPath('wfj412.jpg'));
    

    \Storage::mimeType($fa->getPath('wfj412.jpg'));