How do I make image effects to rotate and skew images in PHP?
I want to know the underlying stuff the magic, what php extension should i look into and learn to make this happen, any good tutorials online to make cool image effects?
How do I make image effects to rotate and skew images in PHP?
I want to know the underlying stuff the magic, what php extension should i look into and learn to make this happen, any good tutorials online to make cool image effects?
i have seen a post here which shows 13 php image effects, you can have a try to see whether it's something you need.
http://thetutlage.com/post=TUT160
http://www.thetutlage.com/demo/imageManipulation/example1.php
For image effects and overlaying an image on top of another:
Also have a look at ezcomponents
http://ezcomponents.org/docs/tutorials/ImageAnalysis http://ezcomponents.org/docs/tutorials/ImageConversion
Has some very strong image analysis and conversion methods.
As stillstanding answer says you can use both GD or imageMagick to work with images.
To distort an image I found:
http://php.net/manual/en/function.imagick-distortimage.php
To skewing an image with GD look at this post:
How would I skew an image with GD Library?