views:

48

answers:

2

I am a newbie with php and I want to play with php and images uploaded.

What are the most used PHP image manipulation classes ?

+3  A: 

If you're just starting I'd suggest taking a look at the GD functions. They come with PHP (assuming you have GD enabled).

If you need more power then there's ImageMagick, but you have to install it yourself.

Manos Dilaverakis
A: 

Most used is hard to find but a large list of php classes can be found here:

http://phpclasses.fonant.com/browse/class/11.html

You can do alot with the built in GD graphics library:

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

zaf