How to perform seam carving on an image using PHP's GD library? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:37:44Z http://stackoverflow.com/feeds/question/188789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library 2 How to perform seam carving on an image using PHP's GD library? Joe Lencioni 2008-10-09T19:22:09Z 2008-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#188946 0 Answer by Greg for How to perform seam carving on an image using PHP's GD library? Greg 2008-10-09T19:57:58Z 2008-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#190415 2 Answer by dcousineau for How to perform seam carving on an image using PHP's GD library? dcousineau 2008-10-10T07:28:38Z 2008-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>