Full refund within 14 days of purchase date.
This is a light yet powerful image morphing utility written in PHP.
// Simply include the class in your project
require_once 'img.class.php';
// Instantiate the ImageMorph object
$imageMorph = new ImageMorph();
// Load an image from the server
$img = $imageMorph -> Load($filename);
// Change its dimensions according to your needs
$img = $imageMorph -> Resize($img,$w,$h);
// Send the result to the browser
$imageMorph -> Display($img);
Each of these methods has many options. The class is fully documented with examples for each method.
Class methods include:
Questions & Comments