Winamp & Shoutcast Forums

Winamp & Shoutcast Forums (http://forums.winamp.com/index.php)
-   Classic Skins (http://forums.winamp.com/forumdisplay.php?f=5)
-   -   best skins for my sig (http://forums.winamp.com/showthread.php?t=213451)

LuigiHann 17th April 2005 19:37

best skins for my sig
 
http://img29.echo.cx/img29/695/zelda-3.jpg http://img29.echo.cx/img29/3074/trigun.jpg http://img29.echo.cx/img29/3808/tgs.jpg http://img29.echo.cx/img29/291/sc17.jpg http://img29.echo.cx/img29/4411/pbtc.jpg http://img29.echo.cx/img29/3046/nbx.jpg http://img29.echo.cx/img29/3990/mario13.jpg http://img29.echo.cx/img29/7637/mario12.jpg http://img29.echo.cx/img29/6465/lh1.jpg http://img29.echo.cx/img29/3596/l486.jpg http://img29.echo.cx/img29/144/bng.jpg http://img80.echo.cx/img80/334/neverhood0hy.jpg
http://img80.echo.cx/img80/7729/pa9qm.jpg

Okay I need to narrow that down to like 5 skins links for my signature. Which are the best? :p

LuigiHann 17th April 2005 21:38

Anyone know a code that would make it show 5 random ones each time? :igor:

bgesley 17th April 2005 21:55

Quote:

Originally posted by LuigiHann
Anyone know a code that would make it show 5 random ones each time? :igor:
I bet griffin does since he has that smiley slot machine.

gaekwad2 17th April 2005 22:00

It would make all dialuppers hate you though.

And I don't think you could put in direct links to the individual skins.

Mr Jones 17th April 2005 22:04

Drop this into notepad or something...

code:

<?php



$folder = '.';




$extList = array();
$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpeg';
$extList['jpeg'] = 'image/jpeg';
$extList['png'] = 'image/png';



$img = null;

if (substr($folder,-1) != '/') {
$folder = $folder.'/';
}

if (isset($_GET['img'])) {
$imageInfo = pathinfo($_GET['img']);
if (
isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
file_exists( $folder.$imageInfo['basename'] )
) {
$img = $folder.$imageInfo['basename'];
}
} else {
$fileList = array();
$handle = opendir($folder);
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (
isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
$fileList[] = $file;
}
}
closedir($handle);

if (count($fileList) > 0) {
$imageNumber = time() % count($fileList);
$img = $folder.$fileList[$imageNumber];
}
}

if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
} else {
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate (100, 100)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
imagepng ($im);
imagedestroy($im);
}
}

?>



Save it as oh, image.php or something similar,upload it to your webserver image directory, then link it, using [img] tags, like
www.myserver.com/images/image.php

Link it 5 times and you would have 5 random images, or you could frig around with the script to show 5 at once, gotta have a php enabled server though.

bgesley 17th April 2005 22:20

And have a lot of images too. You don't want your sig to contain like 3 images of the same skin.

El-ArGeNtO 17th April 2005 23:37

My Votes are there :D It was difficult because all your skins have their own style, so i voted the ones that i liked the best...

StillWater 18th April 2005 01:30

Where's Earthbound?! :mad:

LuigiHann 18th April 2005 01:36

Quote:

Originally posted by StillWater
Where's Earthbound?! :mad:
Not even in the poll, it's in the sig :D

StillWater 18th April 2005 02:06

hehe, no worries ;)

Every skin has been voted for, and all but 1 have received at least 2 votes. That's pretty cool. :)

I would have voted for the Tetris skin if it was there too.


//hey - you edited that while I was typing :D Cool! nice to see it in the sig :)

LuigiHann 18th April 2005 02:10

Hmm.. I don't really like the Tetris skin anymore. The EQ bars are the only good part. :/

StillWater 18th April 2005 23:01

I like most of it. The graphics look just like a computer game of that period, and for a game skin, the whole skin is refreshingly usable. The volume bar and shuf/rep are cool too.

jjpotter 18th April 2005 23:20

I agree with StillWater, TetrisAmp rules


All times are GMT. The time now is 09:04.

Copyright © 1999 - 2010 Nullsoft. All Rights Reserved.