Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.0.0RC1

Request #13152 Function to chain multiple tools together
Submitted: 2008-02-19 20:53 UTC
From: cbrunet Assigned:
Status: Open Package: Image_Tools (version 0.4.2)
PHP Version: Irrelevant OS:
Roadmaps: (Not assigned)    
Subscription  


 [2008-02-19 20:53 UTC] cbrunet (Charles Brunet)
Description: ------------ Here is a function that allow a user to "chain" many tools together. The only requirement is that the next tool must use an "image" option as input image. Test script: --------------- <? // Example: Displays a thumbnail with bevel effect $th = Image_Tools::factory("Thumbnail", array('image', "photo.jpg")); $bevel = $th->chain("Border"); $bevel->bevel(); $bevel->display(); ?>

Comments