[PHP-users 19624]imagettftextでのフォントサイズ

キャスターマイルド caster_mild_49401219 @ hotmail.com
2003年 12月 31日 (水) 06:42:46 JST


こんばんは。キャスターマイルドです。
年末のこの時間までプログラムを書いているのは
自分だけではないだろうかと妄想にふけっています。

さて、GDライブラリでフォントを画像に変換するテスト
をしているのですが、

<?php
    $im = imagecreate(170, 50);
    $blue = imagecolorallocate($im, 0, 0, 255);
    $white = imagecolorallocate($im, 255, 255, 255);
    imagerectangle($im, 0, 0, 169, 49, $blue);
    $f="/usr/share/fonts/ja/TrueType/kochi-gothic.ttf";
    $txt = "テスト";
    $txt = mb_convert_encoding( $txt,"UTF-8"  );
    imagettftext($im, 14, 0, 0, 35, $white, $f, $txt);
    header("Content-type: image/png");
    imagepng($im);
    imagedestroy($im);
?>

imagettftext($im, 14, 0, 0, 35, $white, $f, $txt);
この14と言う場所のサイズを14より小さくすると
きちんと表示されません。

フォントサイズの最小値って言うのが決まっているのでしょうか?
ご存じの方がいらっしゃいましたらご教授願います。


**********************************
*
* キャスターマイルド
* caster_mild_49401219 @ hotmail.com
*
**********************************


PHP-users メーリングリストの案内