PHP Classes

File: example_1.php

Recommend this page to a friend!
  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: 21 years ago
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(500, 300, '#FF0000');
$img->output();
?>