//Sample usage for SecureImage
//Only have to change the file name at line 5.
<?php
include("SecureImage.php");
$image=new SecureImage('bad.jpg');
if($image->CheckIt())
echo "Yeaah Dude! You can trust it";
else
echo "Bad image file!";
?>