Kód: Vybrat vše
<?php
$server = "176.9.104.116"; // IP nebo adresa
$port = 25574; // port serveru
// Vytvoř obrázek o rozměrech
$image_width = 550; // px
$image_height = 150; // px
$im = imagecreatefrompng("signa.png");
// Nastav barvy
$black = imagecolorallocate($im, 0, 0, 0);
$red = imagecolorallocate($im, 204,0,0);
$blue = imagecolorallocate($im, 0,0,255);
$green = imagecolorallocate($im, 0,255,51);
$green2 = imagecolorallocate($im, 0,153,0);
$font_file = 'arial.ttf'; // umĂstÄ›nĂ
$font = 'Minecraft.ttf';
$mineClassLoc = "MinecraftServerStatus/status.class.php"; // umĂstÄ›nĂ tĹ™Ădy na zjištÄ›nĂ statusu
// naÄŤti tĹ™Ădu a zjisti status
include_once $mineClassLoc;
$status = new MinecraftServerStatus();
$response = $status->getStatus($server,$port);
// vepisovánà do obrázku
imagefttext($im, 25, 0, 10, 40, $red, $font, 'Online');
imagefttext($im, 15, 0, 30, 70, $blue, $font_file, $response['motd']);
imagefttext($im, 15, 0, 30, 90, $blue, $font_file, 'IP: '.$response['hostname'].":".$response['port']);
imagefttext($im, 15, 0, 30, 110, $blue, $font_file, 'Hraci: '.$response['players'].'/'.$response['maxplayers']);
imagefttext($im, 15, 0, 30, 130, $blue, $font_file, 'Verzia: '.$response['version']);
;// nastav HTTP hlaviÄŤku
header('Content-Type: image/png');
// odešli png obrázek
imagepng($im);
// vyÄŤisti cache
imagedestroy($im);
?>