'1942.ttf' ); $font_dir = 'fonts/'; $font = $font_dir . $fonts[0]; $font_colour = imagecolorallocate($image, 255, 255, 255); // Font Color $font_size = 55; $x_px = (imagesx($image) - $font_size * strlen($captchanumber)) / 2; // get x coordinates for text to be center aligned $y_px = $font_size + 12; // get y coordinates for text to be middle aligned imagettftext($image, $font_size, 0, $x_px, $y_px, $font_colour, $font, $captchanumber); // add text to image header('Content-type: image/png'); imagepng($image); ?>