PHP Classes

File: class_pictText_examples.php

Recommend this page to a friend!
  Classes of MARY Matthieu   PictText   class_pictText_examples.php   Download  
File: class_pictText_examples.php
Role: Example script
Content type: text/plain
Description: basic example
Class: PictText
Generate an a picture with a random text string
Author: By
Last change:
Date: 19 years ago
Size: 230 bytes
 

Contents

Class file image Download
<?php
/**
 * this file make a random text file of 5 characters
 * and show it
 **/
require_once 'class_pictText.php';
$pict = new pictText();
$pict->makeRandomText(5);
//$pict->setFont();
$pict->show();
unset(
$pict);
?>