確かにそれは簡単ですが、私はまだこれで非常に初心者です。ImageStringと呼ばれるphp関数があります。これは、テキストを画像に変換するために使用できる唯一の関数です。理由はわかりませんが、phpマニュアルのスクリプト(コピーペースト)でも機能しません。
私が欲しいのは、フォントサイズを5より大きいものに変更することだけです。
これは私のコードです
header ("Content-type: image/jpeg");
// imagecreate (x width, y width)
$img_handle = imagecreatetruecolor (800, 600) or die ("Cannot Create image");
// ImageColorAllocate (image, red, green, blue)
$back_color = ImageColorAllocate ($img_handle, 0, 0, 0);
$txt_color = ImageColorAllocate ($img_handle, 243,203,146);
imagecolortransparent($img_handle, $back_color);
$text = 'soem text goes here';
ImageString($img_handle, 40, 10,90, $text, $txt_color);
Imagejpeg ($img_handle);
ImageDestroy($img_handle);