Login   Register  
PHP Classes
elePHPant
Icontem

File: example_1.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Martin Theimer  >  Image_Toolbox  >  example_1.php  >  Download  
File: example_1.php
Role: Example script
Content type: text/plain
Description: example 1
Class: Image_Toolbox
Image manipulation class
Author: By
Last change:
Date: 2003-11-04 22:12
Size: 349 bytes
 

Contents

Class file image Download
<?php
/* example_1.php - Example for the Image_Toolbox class
 *
 * That's the simplest example I can think of.
 * Puts out a 500x300 red-colored jpeg file to the browser
 *
 * @author Martin Theimer <pappkamerad@decoded.net>
 */
require_once ('Image_Toolbox.class.php');

$img = new Image_Toolbox(500300'#FF0000');
$img->output();
?>