03-26-2008, 01:47 AM
|
#19 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,042
Thanks: 193
|
Quote:
Originally Posted by martins256
PHP Code:
<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor(51, 20)
or die("Cannot Initialize new GD image stream");
$text_color = imagecolorallocate($im, 255, 255, 255);
imagestring($im, 2, 5, 3, "Talk", $text_color);
$text_color = imagecolorallocate($im, 246, 122, 48);
imagestring($im, 2, 29, 3, "PHP", $text_color);
imagepng($im);
imagedestroy($im);
?>

|
So simple yet, so good looking xD
__________________
VillageIdiot can have my babbies ;d
|
|
|
|