Matty
Matty

Reputation: 1

How To Resize Images On Upload

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

Answers (1)

stanri
stanri

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

Related Questions