I have a script below that resizes a jpg images. Currently only jpg files work. Can anyone tell me how to get .gif, .png, and possibly .tif and .pdf pictures to work in this script.
Thanks!
<?php
// The file
$filename = $_REQUEST['photo'];
$wid=625;
// Content type
header('Content-type: image/jpeg');
header('Content-length: '.filesize($filename));
Bookmarks