dev-master
9999999-dev https://github.com/fkrauthan/FkrImagineBundleIntegrates Imagine into Symfony2
MIT
The Requires
- php >=5.3.2
- imagine/imagine 0.2.*
- symfony/framework-bundle 2.*
by Florian Krauthan
image symfony bundle imagine image transform
Wallogit.com
2017 © Pedro Peláez
Integrates Imagine into Symfony2
Integrates Imagine into Symfony2., (*1)
This can be done in three different ways:, (*2)
Method #1) Use composer, (*3)
"require": {
"fkr/imagine-bundle": "*"
}
Method #2) Use git submodules, (*4)
git submodule add git://github.com/avalanche123/Imagine.git vendor/imagine git submodule add git://github.com/fkrauthan/FkrImagineBundle.git vendor/bundles/Fkr/ImagineBundle
Method #3) Use deps file, (*5)
[Imagine]
git=git://github.com/avalanche123/Imagine.git
target=imagine
version=v0.2.8
[FkrImagineBundle]
git=git://github.com/fkrauthan/FkrImagineBundle.git
target=bundles/Fkr/ImagineBundle
// app/autoload.php
$loader->registerNamespaces(array(
'Imagine' => __DIR__.'/../vendor/imagine/lib',
'Fkr' => __DIR__.'/../vendor/bundles',
// your other namespaces
));
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Fkr\ImagineBundle\FkrImagineBundle(),
// ...
);
}
# app/config.yml
fkr_imagine:
driver: gd
Allowed drivers: * gd (default) Use GD * imagick Use IMagick * gmagick Use GMagick, (*6)
To get a driver specific Imagine class instance just use the following code, (*7)
$this->get('fkr_imagine');
Thats all. For the complete api visit the Imagine api doc., (*8)
Resources/meta/LICENSE, (*9)
Integrates Imagine into Symfony2
MIT
image symfony bundle imagine image transform