What is the fastest way to do image rotation in PHP without using GD's imagerotate? - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T05:48:11Zhttp://stackoverflow.com/feeds/question/1476299http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1476299/what-is-the-fastest-way-to-do-image-rotation-in-php-without-using-gds-imagerotat1What is the fastest way to do image rotation in PHP without using GD's imagerotate?Beau Simensenhttp://stackoverflow.com/users/504532009-09-25T09:16:47Z2010-01-16T16:48:21Z
<p>I do not have the ability to use PHP's GD <code>imagerotate()</code> function, so I need to find another solution. I used the <code>rotateImage()</code> method <a href="http://us2.php.net/manual/en/function.imagerotate.php#93692" rel="nofollow">found in the comments</a> of the <code>imagerotate()</code> PHP help page, but it is very slow on large images.</p>
<p>I am horrible at image math, and am having a hard time formulating the correct Google search to get me pointed in the correct direction to get my images rotated more quickly.</p>
<p>Ideally I'd like to avoid calling an external application if I can find a solution that is close to the same speed from within PHP.</p>
<p>I do not have ImageMagick installed and would like non-ImageMagick that I can try out before resorting to installing ImageMagick.</p>
<p><strong>Update</strong></p>
<p>I was asked to specify why I had so many restrictions.</p>
<p>I had initially assumed that I could use <code>imagerotate()</code> directly but I discovered that it only works if PHP is built with PHP's version of GD. Some distros (at least Ubuntu, which I am using as my development environment) <a href="https://bugs.launchpad.net/ubuntu/+source/php5/+bug/39719/comments/4" rel="nofollow">refuse to link against PHP's heavily modified version of the GD library</a>. In these cases, trying to call <code>imagerotate()</code> results in:</p>
<p><strong><code>PHP Fatal error: Call to undefined function: imagerotate()</code></strong></p>
<p>I found a PHP workaround for image rotation using GD (without using the <code>imagerotate()</code> function) but it seems very slow. 15-20 seconds for a 2848x2136 image.</p>
<p>I am hoping to find a faster algorithm using GD but <em>will</em> consider using ImageMagick or some other external library as a last resort. It is not that I am unable to install ImageMagick, it is that I would prefer to find a faster alternative using PHP built-in functions before adding more dependencies to this project.</p>
<p>About <code>exec()</code>: As a general rule I try pretty hard to avoid handing off to <code>exec()</code>. In fact, I cannot remember anytime in the last five years that I have had to do this at all. I <em>will</em> consider doing so if nothing else rotates quickly enough, but I'd like to check out some other options before I go there.</p>
http://stackoverflow.com/questions/1476299/what-is-the-fastest-way-to-do-image-rotation-in-php-without-using-gds-imagerotat/1476323#14763232Answer by Evernoob for What is the fastest way to do image rotation in PHP without using GD's imagerotate?Evernoobhttp://stackoverflow.com/users/1626682009-09-25T09:22:50Z2009-09-25T09:27:53Z<p>If you really can't use the GD library, is it possible you could use 4 different images for each one, each with the image being rotated at 90 degrees?</p>
<p>You could save 4 files per image - image_normal.jpg, image_90.jpg, image_180.jpg, image_270.jpg</p>
<p>Then when the user wants to rotate the image, you can just load the corresponding file.</p>
<p>Not the greatest hack, but a solution at best.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1476299/what-is-the-fastest-way-to-do-image-rotation-in-php-without-using-gds-imagerotat/1476341#14763413Answer by graham.reeds for What is the fastest way to do image rotation in PHP without using GD's imagerotate?graham.reedshttp://stackoverflow.com/users/3422009-09-25T09:27:24Z2009-09-25T09:27:24Z<p><a href="http://www.leptonica.com/rotation.html" rel="nofollow">This page</a> seems to list a series of methods, but you will have to do the coding yourself.
<a href="http://www.leptonica.com/rotation.html" rel="nofollow">http://www.leptonica.com/rotation.html</a></p>
http://stackoverflow.com/questions/1476299/what-is-the-fastest-way-to-do-image-rotation-in-php-without-using-gds-imagerotat/1476701#14767011Answer by Quamis for What is the fastest way to do image rotation in PHP without using GD's imagerotate?Quamishttp://stackoverflow.com/users/113012009-09-25T11:08:57Z2010-01-16T16:48:21Z<p>You have access to exec() functions but cannot install <a href="http://en.wikipedia.org/wiki/ImageMagick" rel="nofollow">ImageMagick</a>? How is that?</p>
<p>You know you can <code>dl()</code> libraries at runtime, right?</p>