class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
Got it. $handle->image_crop works AFTER the file is resized, but before the border is applied, and if I specify (0, 0, 30, 0) then 30px will be cropped from the bottom of the image converting the 100px height to 70px.Reply
$handle->image_crop = array(0,0,30,0)
will a 100x100 image become 100w x 70 tall, with 30 px removed from the bottom of the image?