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  


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 49 - 45 = ?

 
 [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