Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Syam  >  Easy Thumbnail Maker  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example on using the class
Class: Easy Thumbnail Maker
Generate thumbnails of image files
Author: By
Last change:
Date: 2006-01-22 19:04
Size: 442 bytes
 

Contents

Class file image Download
<?
// Simple thumbnail maker
// Variables available are
// extension, upfile, dstfile, max_width, max_height
// Currently supports GIF and JPG
// makeThumb($max_width, $max_height, $upfile, $dstfile);
$tum = new thumbMaker;
$grabExt explode("."$_FILES['file']['name'];
$tum->extension $grabExt[1];
$tum->upfile $_FILES['file']['tmp_name'];
$tum->dstfile "mythumb/" $_FILES['file']['name'];
$tum->makeThumb(100,100);
?>