Is there a way to do a FishEye (or Barrel transformation) effect on a image with PHP-GD? I found this with some code, but I have a hard time porting it to PHP.
|
feedback
|
|
PHP with GD can't do such a thing in an acceptable way, processing an image pixel-by-pixel will be really slow... Imagick does support a function that enable you to write your own expression (fximage), after that everything will be handled internally within Imagick. So I've find a way to do what you've requested in Imagick, I've taked the expression from "Scott builds Software" blog - fisheye effect in imagick. You can read the full explanation of the expression in his blog. Further documentation of this function is available at the official ImageMagick site, you can learn there how you can build your own expressions. Please note that the PHP documentation about the return value is incorrect, I've also commented there. The function return the actual Imagick object. So here is your code:
Anyway, keep in mind that this is still slow, be careful with whatever you do with that... | |||||
|
feedback
|
|
But - It is possible with GD and fast!! in comparison with ImageMagick
| ||||
|
feedback
|
Create a new image with the size of (2*SourceWidth)/PI.
exec(imagemagick). – mario Dec 9 '10 at 16:35