| 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
 <title>ImageSlicer Sample</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body>
 <table width="100%"  border="0" cellspacing="0" cellpadding="0">
 <tr align="center" valign="top">
 <td colspan="2"><h1>ImageSlicer</h1></td>
 </tr>
 <tr valign="top">
 <td><?
 include("imageslice.php");
 
 $slice = new ImageSlicer("autumnleaves.jpg",4,4);
 $slice->set_border(2);
 $slice->show_image();
 
 
 ?>
 <p><br>
 $slice = new ImageSlicer("autumnleaves.jpg",4,4);<br>
 $slice->set_border(2);<br>
 $slice->show_image();</p></td>
 <td>      <?
 
 $slice = new ImageSlicer("autumnleaves.jpg",4,2);
 $slice->show_image();
 
 
 ?>
 <br>
 $slice = new ImageSlicer("autumnleaves.jpg",4,2);<br>
 $slice->show_image();</td>
 </tr>
 </table>
 <p> </p>
 <p> </p>
 </body>
 </html>
 
 |