Giter Club home page Giter Club logo

laravel-glide's Introduction

Laravel Glide

Leverage Glide to perform on the fly image manipulations in Laravel.

Installation

Add the package to the dependencies of your application.

composer require michielkempen/laravel-glide

Configuration

Configure the package using environment variables.

<?php

return [

    'source' => [

        /*
         * The filesystem where the original files are stored.
         */
        'filesystem' => env('GLIDE_SOURCE_FILESYSTEM', 'public'),

        /*
         * The path within the filesystem where the original files are stored.
         */
        'path' => env('GLIDE_SOURCE_PATH', ''),

    ],

    'cache' => [

        /*
         * The filesystem where the manipulated files will be cached.
         */
        'filesystem' => env('GLIDE_CACHE_FILESYSTEM', 'public'),

        /*
         * The path within the filesystem where the manipulated files will be cached.
         */
        'path' => env('GLIDE_CACHE_PATH', 'cache/'),

    ],

    /*
     * The secret that is used to sign the manipulation requests.
     */
    'secret' => env('GLIDE_SECRET', 'secret'),

    /*
     * The prefix of the original files endpoint.
     */
    'file_endpoint_prefix' => env('FILE_ENDPOINT_PREFIX', '/storage/'),

    /*
     * The prefix of the manipulated files endpoint.
     */
    'glide_endpoint_prefix' => env('GLIDE_ENDPOINT_PREFIX', '/glide/'),

];

Usage

Here's a quick example that shows how an image can be modified:

$manipulatedImageUrl = glide($fileName, ['w'=> 50, 'filt'=>'greyscale']);

Take a look at Glide's image API to see which parameters you can pass to the method.

License

The MIT License (MIT). Please see License File for more information.

laravel-glide's People

Contributors

michielkempen avatar

Watchers

 avatar  avatar

laravel-glide's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.