gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Fri Sep 25, 2009 2:29 pm Post subject: Holland |
|
|
I'm a genius ! n.n!!
| Code: | <?php
header ("Content-type: image/png");
$image = "images/IMG.png";
$im = imagecreatefrompng($image);
$handle = fopen("http://na.aiononline.com/livestatus/character-legion/search?serverName=Yustiel&charName=Gogodr", "rb");
$contents = stream_get_contents($handle);
fclose($handle);
$split = preg_split('/(<em( style="[-:a-z0-9 ]+")?>|<\/em>)/i' , $contents, -1, PREG_SPLIT_DELIM_CAPTURE);
$font = "arial.ttf";
$text = "Level: " .strip_tags($split[2]);
$text2 ="Gogodr
Yustiel | Elyos | Gladiator";
$white = imagecolorallocate($im, 255, 255, 255);
imagettftext($im, 20, 0, 8, 28, $white, $font, $text);
imagettftext($im, 10, 0, 13, 48, $white, $font, $text2);
imagepng($im);
imagepng($im, "images/gogodr.png");
imagedestroy($im);
?> |
it was all about
|
|