PHP Library similar to GD
Im looking for a PHP librar开发者_开发技巧y similar to the PHP GD library though having simplified classes.
Any suggestions?
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
Have you tried ImageMagick?
You can use a wrapper library like wideimage, which simplifies the interface to GD.
There is another project that aims to simplify GD called PHP Image Magician that I'd recommend.
精彩评论