![]() |


|
|||||||
| Pictures & Screenshots Post your pictures and screenshots here. This is the only forum where high resolution images are acceptable to post. |
![]() |
|
|
Thread Tools |
|
|
#10 (permalink) | |
![]() ![]() ![]() Join Date: May 2003
Location: Dallas/Ft. Worth area of Texas, USA
Age: 33
Posts: 17,133
|
Re: Fear the signature
Quote:
What program are you using to do that?
__________________
![]() ![]() Take the world's smallest political quiz! "I was touched by His Noodly Appendage." TacticalGamer TX LAN/BBQ Veteran:
|
|
|
|
|
| Sponsored links | |
|
|
|
|
|
#11 (permalink) | |
|
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
|
Re: Fear the signature
random scripting but mainly php
Code:
<?php
header ("Content-type: image/png");
Header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
Header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
Header('Pragma: no-cache');
$folder = "";
$exts = 'jpg jpeg gif';
$files = array(); $i = -1; // Initialize some variables
if ('' == $folder) $folder = './';
$handle = opendir($folder);
$exts = explode(' ', $exts);
//basically searches through the folder for the exts
while (false !== ($file = readdir($handle))) {
foreach($exts as $ext) { // for each extension check the extension
if (preg_match('/\.'.$ext.'$/i', $file, $test)) { // faster than ereg, case insensitive
$files[] = $file; // it's good
++$i;
}
}
}
closedir($handle); // We're not using it anymore
$rand = date('i', time())%($i+1);//this is set to every minute since the date function has i, it then gives the remainder of the time in minutes divided by the number of files +1. So this way it changes every minute
$image = imagecreatefromgif($files[$rand]);
//creates the purty image
Imagepng($image);
imagedestroy($image);
?>
also the originals: http://mishkanart.com/viewart.php?artid=36 http://mishkanart.com/viewart.php?artid=26 http://mishkanart.com/viewart.php?artid=29
__________________
![]() [age-c1] [gchq-c1] [air2] [tog-c1] [tg-c1]<victory Quote:
Last edited by Mishkan; 08-03-2005 at 05:06 PM. |
|
|
|
|
|
|
#12 (permalink) | |
![]() ![]() ![]() Join Date: May 2003
Location: Dallas/Ft. Worth area of Texas, USA
Age: 33
Posts: 17,133
|
Re: Fear the signature
Quote:
__________________
![]() ![]() Take the world's smallest political quiz! "I was touched by His Noodly Appendage." TacticalGamer TX LAN/BBQ Veteran:
|
|
|
|
|
|
|
#14 (permalink) | |
![]() ![]() ![]() Join Date: May 2003
Location: Dallas/Ft. Worth area of Texas, USA
Age: 33
Posts: 17,133
|
Re: Fear the signature
Quote:
__________________
![]() ![]() Take the world's smallest political quiz! "I was touched by His Noodly Appendage." TacticalGamer TX LAN/BBQ Veteran:
|
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Irregulars: Want a New Signature? | TychoCelchuuu | Battlefield 2 - Tactical Gamer Irregulars | 88 | 04-07-2006 04:18 PM |
| Fear - Multi-player | TheFatKidDeath | First Person Shooters (FPS) | 0 | 02-12-2006 11:25 PM |

