テキストにフォントを使用しようとするまでは、完璧に機能します。
これは私のコードです..現在コメントされている3er行は正常に動作するものです...しかし、この例では、この行をimagettftextに置き換えようとしています..運が悪い.
私のエラーは何ですか?
$newImage = imagecreatefromjpeg( "orsil_secure.jpg" );
$txtColor = imagecolorallocate($newImage, 0, 0, 0);
//imagestring($newImage, 5, 10, 27, $ranStr, $txtColor);
imagettftext($newImage, 5, 10, 27, $txtColor, $font_path, $ranStr);
header( "Content-type: image/jpeg" );
imagejpeg($newImage);
そうそう、前の行はフォントへのルートです。
// random number
$ranStr = md5(microtime());
$ranStr = substr($ranStr, 0, 6);
// Set Path to Font File
$font_path = 'captcha.TTF';