I was looking to change the font but this was the only code I could find..
PHP Code:
// ########################## TEXT FORMATTING ############################
// A PNG uses ImageColorAllocate instead of ImageColorClosest like jpeg uses
//background white
$bg_color = imagecolorallocate ($img, 255, 255, 255);
//black text
$text_color = imagecolorallocate ($img, 19, 36, 161);
imagefilledrectangle ($img, 0, 0, $width, $height, $bg_color);
// ######################### DO NOT EDIT BELOW ############################