Jump to content

Resize Random Picturers


EmperorZenos

Recommended Posts

I have a script that makes a file randomly an image from it's same directory, and some of the images are a bit big. (I want to use them on a phpbb2 forum)So I'm wondering how can I resize the pics generated.

<?php$dh = opendir(".");while (false !== ($file = readdir($dh))){if (preg_match('/.(jpg|gif|png)$/i', $file) and $file != "avatar.gif"){$filelist[] = $file;}}srand((double)microtime()*1000000);$picnum = rand(0, sizeof($filelist) - 1);header("Location: " . $filelist[$picnum]);closedir($dh);?>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...