WideImage - PHP library for image manipulation

WideImage is an object-oriented library for image manipulation. It requires PHP 5.2+ with GD2 extension. The library provides a simple way to loading, manipulating and saving images in the most common image formats.

Download / Homepage

Usage;
<?php
    WideImage::load('big.png')->resize(50, 30)->saveToFile('small.jpg');
    WideImage::load('pic.jpg')->crop('center', 'center', 90, 50)->output('png');
?>


It seems pretty good and has good documentation. I am going to use it for my next project.