// ########################## 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);