How to perform seam carving on an image using PHP's GD library? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:37:44Zhttp://stackoverflow.com/feeds/question/188789http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library2How to perform seam carving on an image using PHP's GD library?Joe Lencioni2008-10-09T19:22:09Z2008-10-10T07:28:38Z
<p>I am working on a project that resizes images using <a href="http://us.php.net/gd" rel="nofollow">PHP's GD</a> library. I would like to be able to add the option to use <a href="http://en.wikipedia.org/wiki/Seam_carving" rel="nofollow">seam carving</a> to resize images but don't want to require something like <a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> (which can do seam carving with <a href="http://www.imagemagick.org/Usage/resize/#liquid-rescale" rel="nofollow">its liquid rescale feature</a>) to accomplish this.</p>
<p>Since there are no built-in seam carving functions in GD, <strong>is there a way to perform seam carving on an image using PHP's GD library</strong> or other built-in PHP functions? Alternatively, do you know if seam carving will eventually be baked into GD?</p>
http://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library/188946#1889460Answer by Greg for How to perform seam carving on an image using PHP's GD library?Greg2008-10-09T19:57:58Z2008-10-09T20:07:38Z<p>I don't see why it shouldn't be possible with GD, but I can tell you it would be slow.</p>
<p>Imagemagick is open source, so I guess you could translate the function to PHP.</p>
http://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library/190415#1904152Answer by dcousineau for How to perform seam carving on an image using PHP's GD library?dcousineau2008-10-10T07:28:38Z2008-10-10T07:28:38Z<p>While you could implement this using GD, you're best bet if you can control the server environment is to create an external script/program to carve an image. PHP is going to be a huge bottleneck doing those kind of calculations. Even basic matrix transformations run a serious risk of hitting the max execution times set in PHP configs.</p>