Login   Register  
PHP Classes
elePHPant
Icontem

File: display5.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Huda M Elmatsani  >  DigiDisplayer  >  display5.php  >  Download  
File: display5.php
Role: Example script
Content type: text/plain
Description: sample
Class: DigiDisplayer
Generate graphic images representing number digits
Author: By
Last change: use of FrameMaker
Date: 2004-08-10 18:12
Size: 301 bytes
 

Contents

Class file image Download
<?
include("digidisplayer.php");

$rand_number rand(32441234,99875432);
$counter = new DigiDisplayer($rand_number,"strip04.gif",10);
$img $counter->draw_digit();

$border = new FrameMaker();
$border->set_image($img);
$border->set_border(12,"FFCC00","bevel");
$border->show_picture();
?>