Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Allo  >  Eva Cloud Image  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Eva Cloud Image
Resize, crop and rotate images
Author: By
Last change:
Date: 2012-08-09 23:51
Size: 608 bytes
 

Contents

Class file image Download
<?php
/**
 * EvaCloudImage
 * light-weight url based image transformation php library
 *
 * @link      https://github.com/AlloVince/EvaCloudImage
 * @copyright Copyright (c) 2012 AlloVince (http://avnpc.com/)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 * @author    AlloVince
 */

require_once 'EvaCloudImage.php';
error_reporting(E_ALL);

// Check php version
if( version_compare(phpversion(), '5.3.0''<') ) {
    
printf('PHP 5.3.0 is required, you have %s'phpversion());
    exit(
1);
}

$cloudImage = new EvaCloudImage(null, include 'config.inc.php');
$cloudImage->show();