tags:

views:

135

answers:

3

Hello,

Im looking for a PHP library similar to the PHP GD library though having simplified classes.

Any suggestions?

+1  A: 

Have you tried ImageMagick?

Heinrich Filter
Thanks, this is helpful. Though it would be better if we have something much simpler.
ed
+4  A: 

GD is only one library for image processing. PHP also has other library extensions:

  • ImageMagick a native php extension to create and modify images using the ImageMagick API.
  • Gmagick a php extension to create, modify and obtain meta information of images using the GraphicsMagick API.
  • Cairo a native PHP extension to create and modify graphics using the Cairo Graphics Library.
  • Exif With the exif extension you are able to work with image meta data.

Here is comparison: http://kore-nordmann.de/blog/comparision_of_php_image_libraries.html

JCasso
Wow thanks, if I get the chance I shall try these. Looks interesting.
ed
+1  A: 

You can use a wrapper library like wideimage, which simplifies the interface to GD.

troelskn