次の基本イメージ (PNG-24) を使用します。
次のように、画像にテキストを書き込もうとしています。
<?
ini_set('display_errors', 1);
error_reporting(E_ALL);
//#### Load the base image
$im = imagecreatefrompng("images/SpecialClearanceBlank.png");
imagealphablending($im, false);
imagesavealpha($im, true);
//#### Create the badge
if($im) {
//#### define some colours to use with the image
$white = imagecolorallocate($im, 255, 255, 255);
//#### get the width and the height of the base image
$width = imagesx($im);
$height = imagesy($im);
//#### Define font and text
$font = "/var/www/arial.ttf";
$fontSize = 13;
$angle = 0;
$text = "15%";
//#### calculate the left position of the text:
$dimensions = imagettfbbox($fontSize, $angle, $font, $text);
$textWidth = abs($dimensions[4] - $dimensions[0]);
$leftTextPos = ( $width - $textWidth ) / 2;
//#### finally, write the string:
//imagestring($im, 5, $leftTextPos, $topTextPos, $text, $white);
imagettftext($im, $fontSize, $angle, $leftTextPos + 1, 29, $white, $font, $text);
// output the image
// tell the browser what we're sending it
Header('Content-type: image/png');
// output the image as a png
imagepng($im);
// tidy up
imagedestroy($im);
}
?>
これは低品質のテキストを生成しています (非常にむらがあります) - テキストをアンチエイリアスして滑らかに見せるにはどうすればよいでしょうか?
これはブロック状のバージョンです:
レンダリングされた png (フォトショップで拡大) を詳しく分析すると、書いているテキストにアンチエイリアシングがなく、書かれているピクセルがほとんど透明であることがわかりますか?
何が原因ですか - スムーズなテキストを取得するにはどうすればよいですか?