Login   Register  
PHP Classes
elePHPant
Icontem

File: r-image.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alexandr  >  cThumbnail  >  r-image.php  >  Download  
File: r-image.php
Role: Example script
Content type: text/plain
Description: example php
Class: cThumbnail
Generate thumbnails from image files
Author: By
Last change:
Date: 2006-05-03 07:04
Size: 355 bytes
 

Contents

Class file image Download
<?
    
require_once("thumbnail.php");

    if (
$_GET['color'])
    {
        
$bg "0x" substr($_GET['color'], 06);
        eval(
"\$bg = " $bg ";");
        
$thumb = new cThumbnail($_GET['file'], $_GET['w'], $_GET['h'], $bg);
    }
    else
        
$thumb = new cThumbnail($_GET['file'], $_GET['w'], $_GET['h']);
    
    
$thumb->setType('image/jpeg');

    
$thumb->output();

?>