Dan JPEG Image thing

Ahmed told me you wanted something to load Progressive Jpegs into Flash. Well its actually pretty easy. The PHP code is:

<?

header("Content-type: image/jpeg");

$im = ImageCreateFromJPEG("___IMAGE___");

ImageJPEG($im);
ImageDestroy($im);

?>

or if you wanted to make it a little more customizeable,

<?

header("Content-type: image/jpeg");

$im = ImageCreateFromJPEG($_GET['img']);

ImageJPEG($im);
ImageDestroy($im);

?>

and then load it like:

loadMovie("thePHPfile.php?img=myImage.jpg");