[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-10-14 Thread uncleringo
You may be interested to know that we've just published a symfony plugin called sfDoctrineJcroppablePlugin which probably does what the original poster was looking for. It's a behaviour for your models which adds image handling & visual cropping on the backend and can be used with the admin gener

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-10-14 Thread uncleringo
You may be interested to know that we've just published a symfony plugin called sfDoctrineJcroppablePlugin which, I think, would be something the original poster was looking for. It's a behaviour for your models which adds image handling & visual cropping on the backend and can be used with the a

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-30 Thread Richtermeister
Hi all, since we're talking about it, I wanted to ask if anybody else is missing the thumbnail_tag() helper that used to be part of the sfThumbnail Plugin. I have an old version that clearly contains it, yet the current repository shows it's not there.. What happened to it? Thanks, Daniel On

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-30 Thread david
There's a couple of jQuery libs for the client side (browser) and this one is pretty decent: http://www.webresourcesdepot.com/jquery-image-crop-plugin-jcrop/ There's a couple of articles about how to use it with PHP: 1) http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop-v11/ 2) htt

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-30 Thread Tom Boutell
The original poster was looking for a tool to visually decide what part of the image you want to crop, primarily. At least I'm pretty sure that's what they wanted. As far as back ends that do the actual image rendering, gd-based and imagemagick-based PHP code are pretty much equally effective as

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-29 Thread Casey
The php imagemagick library is very effective and its a lot faster than php based crop/resize because it is written c. You might not have imagemagick installed, so check with php -i (php -i | grep imagick). If you see imagick, its installed. There is good documentation at the php.net site. I h

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-29 Thread Sid Bachtiar
Sorry, didn't realize he asked for all in one cropping rather than a library to crop/resize images. eCrop is what I use too. On Wed, Sep 30, 2009 at 3:15 PM, Jake Barnes wrote: > > > > On Sep 29, 8:36 pm, Sid Bachtiar wrote: >> Linux box only (using netpbm, >> fast):http://www.symfony-project.

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-29 Thread Jake Barnes
On Sep 29, 8:36 pm, Sid Bachtiar wrote: > Linux box only (using netpbm, > fast):http://www.symfony-project.org/plugins/pkImageConverterPlugin > > Linux and Windows (using GD, > slower):http://www.symfony-project.org/plugins/sfThumbnailPlugin sfThumbnail facillitates cropping? I did not know

[symfony-users] Re: what plugins or code do symfony developers prefer for image cropping?

2009-09-29 Thread Sid Bachtiar
Linux box only (using netpbm, fast): http://www.symfony-project.org/plugins/pkImageConverterPlugin Linux and Windows (using GD, slower): http://www.symfony-project.org/plugins/sfThumbnailPlugin On Wed, Sep 30, 2009 at 1:26 PM, lawrence wrote: > > > A client has asked me to build an image galler