2017 © Pedro Peláez
 

symfony-bundle image-resizer-bundle

image

bigyouth/image-resizer-bundle

  • Thursday, March 1, 2018
  • by bigyouth
  • Repository
  • 3 Watchers
  • 2 Stars
  • 43 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 34 % Grown

The README.md

BigyouthImageResizerBundle

What is it ?

This bundle gives you a simple way to generate resized images (using LiipImagineBundle) with dynamical sizes directly from your Controller or views., (*1)

Requirements

"php": "^5.3.9|^7.0",
"liip/imagine-bundle": "^1.8"

Installation

Download the bundle

Download composer at https://getcomposer.org/download/, (*2)

composer require bigyouth/image-resizer-bundle 1.0.*

Register the bundle

Then, enable the bundle by adding it to the bundles array of the registerBundles method in your project's app/AppKernel.php file:, (*3)

<?php

# app/AppKernel.php

// ...

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...

            new Bigyouth\BigyouthImageResizerBundle\BigyouthImageResizerBundle(),
        ];

        // ...
    }

    // ...
}

Add routing

# app/config/routing.yml

by_resizer:
    resource: "@BigyouthImageResizerBundle/Controller"
    type:     annotation

Configuration

First you need to install and configure the LiipImagineBundle. We recommend to set the default configuration without sizes specified :, (*4)

# app/config/config.yml

liip_imagine:
    filter_sets:
        cache: ~
        default:
            quality: 95
            filters:
                thumbnail: { mode: inset }

Usage

In your controller

To use the ImageResizerBundle in your controller, you only have to generate the by_resize route with the router service :, (*5)

<?php
// ...

/**
* Class PageController
*
* @package Bigyouth\FrontBundle\Controller
*/
class PageController extends PageCacheController
{

    // ...
    public function indexAction(Request $request)
    {

        // ...

        $route = $this->generateUrl('by_resize', [
            'filter'=> 'default',
            'path'  => '/uploads/images/my-image.jpg',
            'w'     => 1280,
            'h'     => 720
        ]);

    }
}

filter

default : 'default', (*6)

The name of the filter you setted in app/config/config.yml within the LiipImagineBundle configuration and which you wish to use., (*7)

path

The web path of the image you wish to resize., (*8)

w

default : null, (*9)

The width you want to set to your image., (*10)

h

default : null, (*11)

The height you want to set to your image., (*12)

In your views

In your views, you can use the Twig extension by_resize as follows :, (*13)

// ...

{{ by_resize('/uploads/images/my-image.jpg', 1280, 720, 'default', 'https') }}

// ...

path

The web path of the image you wish to resize., (*14)

w

default : null, (*15)

The width you want to set to your image., (*16)

h

default : null, (*17)

The height you want to set to your image., (*18)

filter

default : 'default', (*19)

The name of the filter you setted in app/config/config.yml within the LiipImagineBundle configuration and which you wish to use., (*20)

scheme

default : 'http', (*21)

The scheme in which you want the url to be generated., (*22)


author : Alexis Smadja, (*23)

The Versions

01/03 2018

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

The Development Requires

by Alexis Smadja

01/03 2018

1.0.1

1.0.1.0

  Sources   Download

Bigyouth

The Requires

 

by Alexis Smadja

17/01 2018

1.0.0

1.0.0.0

  Sources   Download

Bigyouth

The Requires

 

by Alexis Smadja