ImageBundle icon indicating copy to clipboard operation
ImageBundle copied to clipboard

Image manipulation bundle for Symfony 2

Results 34 ImageBundle issues
Sort by recently updated
recently updated
newest added

my symfony site url is http://host_name/project_path/ use image() in twig give wrong url like "/uploads/cache/xxx.gif" which should be "/project_path/uploads/cache/xxx.gif" since asset() give right url (eg. /project_path/web/css/33335c7_abc_25.css)

Hi, I have a OutOfMemoryException that I can't catch. Do you why ? ``` try { $img = $this->get('image.handling')->open('/path/to/my/image.png'); $chemin = $img->jpeg(80); } catch(\Exception $e) { //} catch(\OutOfMemoryException $e) {...

Is there any method to perform Garbage Collection in Symfony2?

I have been having some major issues with the cache. Doing the following in a Controller _$imageFormatter->open($path)->zoomCrop(100,100)->jpeg()_ Produces a _.jpg_ file. But doing this in Twig produces a completely different...

While using this bundle, I often get following error: > Error: Method Gregwar\ImageBundle\ImageHandler::__toString() must not throw an exception in D:\Projects\webberig\app\cache\dev\classes.php line 0 The cause is usually a simple problem. The...

I use your nice bundle since few month and I encountered my first issue today. I simply use the function zoomCrop in my twig template. But the rendering of the...

As said by @Hast in #40, we should be able to slug pretty name in a better way, using, for instance this component: https://github.com/l3pp4rd/DoctrineExtensions/blob/master/lib/Gedmo/Sluggable/Util/Urlizer.php Wouldn't it be overkill? What component/code/dependency...

Hi, I'm interested in optimizing my rendered images using a kind of optimizer like `jpegoptim`. I have thought in using `assetic` filters like here: ``` ``` but that syntax is...

It seems that after a doResize $this->width and $this->height are not set with the new values. I tried to edit Adapter/GD.php with this but I didn't managed... $this->width = $new_width;...

Hello, it's possible to get image height/width inside a controller or entity please ? Thanks.