PHPackages                             fidesio/imagine-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. fidesio/imagine-bundle

ActiveSymfony-bundle[Image &amp; Media](/categories/media)

fidesio/imagine-bundle
======================

Image manipulation using Imagine and Twig Filters.

v3.0.1(10y ago)0191MITPHP

Since Nov 15Pushed 10y ago4 watchersCompare

[ Source](https://github.com/fidesio/AvalancheImagineBundle)[ Packagist](https://packagist.org/packages/fidesio/imagine-bundle)[ Docs](https://github.com/fidesio/AvalancheImagineBundle)[ RSS](/packages/fidesio-imagine-bundle/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

AvalancheImagineBundle
======================

[](#avalancheimaginebundle)

This bundle provides easy image manipulation support for Symfony2. For example, with this bundle, the following is possible:

```

```

This will perform the transformation called `thumbnail`, which you can define to do a number of different things, such as resizing, cropping, drawing, masking, etc.

This bundle integrates the standalone PHP "[Imagine library](https://github.com/avalanche123/Imagine)".

Installation
------------

[](#installation)

Installation is a quick 3 step process:

1. Download AvalancheImagineBundle using composer
2. Enable the Bundle
3. Configure your application's config.yml

### Step 1: Download AvalancheImagineBundle using composer

[](#step-1-download-avalancheimaginebundle-using-composer)

Add AvalancheImagineBundle in your composer.json:

```
{
    "require": {
        "fidesio/imagine-bundle": "~2.1"
    }
}
```

Now tell composer to download the bundle by running the command:

```
$ php composer.phar update fidesio/imagine-bundle
```

Composer will install the bundle to your project's `vendor/fidesio/imagine-bundle` directory.

### Step 2: Enable the bundle

[](#step-2-enable-the-bundle)

Enable the bundle in the kernel:

```
