Login   Register  
PHP Classes
elePHPant
Icontem

File: inc.cropimage.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Andrew Collington  >  Crop Canvas  >  inc.cropimage.php  >  Download  
File: inc.cropimage.php
Role: Auxiliary script
Content type: text/plain
Description: Dynamically outputs a resized image.
Class: Crop Canvas
A class to crop images in a variety of ways.
Author: By
Last change:
Date: 2006-11-29 07:19
Size: 713 bytes
 

Contents

Class file image Download
<?php

/**
 * $Id: inc.cropimage.php 49 2006-11-29 14:35:46Z Andrew $
 *
 * [Description]
 *
 * Required file for class.cropinterface.php.
 *
 * [Author]
 *
 * Andrew Collington <php@amnuts.com> <http://php.amnuts.com/>
 */

list($w$h) = explode('x'$_GET['s']);
require_once(
dirname(__FILE__) . '/class.cropinterface.php');
$ci =& new CropInterface();

if (isset(
$_GET['nch'])) {
    
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
    
header('Last-Modified: ' gmdate('D, d M Y H:i:s') . ' GMT');
    
header('Cache-Control: no-store, no-cache, must-revalidate');
    
header('Cache-Control: post-check=0, pre-check=0'false);
    
header('Pragma: no-cache');
}

$ci->showImageAtSize($_GET['f'], $w$h)

?>