Hi guys. For example; http://mcserverstatus.com/serverstatus.php?id=2399&theme=1 This updates every couple of minutes i believe, and it updates the text on the image. I was wondering how i would go about making one of these, or if anyone knows how to code them i will be willing to pay. Thanks.
They are not too hard to create, you need to use the GD image library which comes as standard when downloading PHP. First you would need to build that image as a background and load it in with imagecreatefromjpeg('url to image') that's presuming you create a jpeg. Then once that's complete you need to use this function http://php.net/manual/en/function.imagettftext.php to insert the text at certain coordinates. If you visit the link I've given all the parameters for this function are explained. Kind regards, Glen