<?php
Header 
("Content-type: image/png");

$image imagecreate(200200);
$black imagecolorallocate($image000);
$white imagecolorallocate($image255,255255);
$txt mb_convert_encoding("離れPHP島""SJIS""UTF-8");
ImageTTFText ($image2501060$white"../common/font/ipaexg.ttf",$txt);
imagepng($image);
imagedestroy($image);
?>