<?php
 
 
// will read the image linux.jpg and convert it to ASCII code
 
// and save it in linux.txt
 
// then we will print the ASCII data to screen by $test->data
 
 
require "Shref_ASCIIimg.class.php";
 
 
 $test = new Shref_ASCIIimg("linux.jpg", "to", "linux.txt") ;
 
 print $test->data ;
 
 
?>
 
 |