Reputation: 1
Is there a PHP function or someway that you know of that images can be resized proportionally on let say, a upload?
Upvotes: 0
Views: 167
Reputation: 2972
There is a class of functions called Imagic which uses the ImageMagic tools (If I remember correctly).
You need Imagick::resizeImage, the documentation for which is found Here.
Upvotes: 1