Моя проблема — Q title.
Я старался http://www.php.net/manual/en/function.imageloadfont.php а также:
imageloadfont ();
но я не вижу никаких изменений, и я получаю ошибку:
Warning: imageloadfont(): gd warning: product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully in E:\xampp\htdocs\test\texts\text01.php on line 3
Warning: imageloadfont(): Error reading font, invalid font header in E:\xampp\htdocs\test\texts\text01.php on line 3
Редактировать:
Мой шрифт.
Цитировать себя, вы должны использовать imagettftext()
, не imagestring()
,
Пример использования, сокращенно / адаптированный со страницы руководства:
$im = imagecreatetruecolor(400, 30);
// Create some colors and set background to white.
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// The text to draw
$text = 'Testing...';
// Replace path by your own font path
$font = 'btitr.ttf';
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im, 'path_to_file.png');
imagedestroy($im);
Других решений пока нет …