PHP Classes

File: SmartImage.class.php

Recommend this page to a friend!
  Classes of Alessandro Coscia   Smart Image   SmartImage.class.php   Download  
File: SmartImage.class.php
Role: Auxiliary script
Content type: text/plain
Description: SmartImage class - Select PHP Version
Class: Smart Image
Resize and add watermarks to images
Author: By
Last change: Now full 4.0.1 support
Date: 17 years ago
Size: 417 bytes
 

Contents

Class file image Download
<?php

/**
 * Smart, easy and simple Image Manipulation
 *
 * @author Alessandro Coscia, Milano, Italy, php_staff@yahoo.it
 * http://www.codicefacile.it/smartimage
 * @copyright LGPL
 * @version 0.8.9
 *
 */

if ( !function_exists('version_compare') || version_compare( phpversion(), '5', '<' ) )
    include_once(
'SmartImage.php4.class.php' ) ;
else
    include_once(
'SmartImage.php5.class.php' ) ;

?>