Is this sig ok?

Associate
Joined
31 Oct 2005
Posts
746
Location
South-West
dev196pb___.png


Can I have that as a sig?

I had one verry similar before but it got taken away?:confused:
 
just crop it, mspaint 4tw.

If I do this though it will only be a picture. The link I have is this :

img]http://tickers.baby-gaga.com/p/dev196pb___.png[/img

It automatically updates with new info and moves on a day etc, if I crop it and host it then it will be a single picture that won't change.

Is there anyway of me editing it so that it will update?

Cheers again, Doug.
 
as i was bored, i made a php script that will do it.

a bit of quality is lost in the conversion though. :p

source.....

PHP:
<?php 
$image = './image.jpg';
if((!file_exists($image)) || (time() - filemtime($image) > 21600)) {
	$old_image = imagecreatefrompng('http://tickers.baby-gaga.com/p/dev196pb___.png');
	$old_width = imagesx($old_image);
	$old_height = imagesy($old_image);
	$new_width = 400;
	$new_height = 75;
	$new_image = imagecreatetruecolor($new_width, $new_height);
	imagecopyresampled($new_image, $old_image, 0, 0, 0, 0, $new_width, $new_height, $old_width, $old_height);
	imagejpeg($new_image, $image);
	imagedestroy($old_image);
	imagedestroy($new_image);
}
header("Content-Type: image/jpg");
readfile($image);
?>
 
Last edited:
Back
Top Bottom