PHP Неустранимая ошибка: вызов неопределенной функции imagettftext ()
Почему я получаю ошибку PHP Fatal error: Call to undefined function imagettftext() в строке 29? <?php ob_start(); session_start(); $strings = '123456789'; $i = 0; $characters = 6; $code = ''; while ($i < $characters) { $code .= substr($strings, mt_rand(0, strlen($strings)-1), 1); $i++; } $_SESSION['captcha'] = $code; //generate image $im = imagecreatetruecolor(124, 40); $foreground = imagecolorallocate($im, […]