showthumb2.php to HTML

index

USE AT OWN RISK

Generated: Tue Jul 31 15:22:15 2007 from showthumb2.php 2005/11/01 372 bytes.

<?php
if (array_key_exists('file', $_REQUEST)) {
 $image = exif_thumbnail($_REQUEST['file'], $width, $height, $type);
} else {
 $image = false;
}
if ($image!==false) {
 header('Content-type: ' .image_type_to_mime_type($type));
 echo $image;
 exit;
} else {
 // no thumbnail available, handle the error here
 echo 'No thumbnail available';
}
?>
 

index

Valid HTML 4.01 Transitional