Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make photo effects with php, skew images etc? [closed]

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?

like image 906
clairecon Avatar asked Oct 13 '22 21:10

clairecon


2 Answers

For image effects and overlaying an image on top of another:

http://php.net/manual/en/book.imagick.php

http://php.net/manual/en/book.image.php

like image 141
bcosca Avatar answered Oct 24 '22 22:10

bcosca


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.

like image 44
Etienne Marais Avatar answered Oct 24 '22 23:10

Etienne Marais