1 2 3 4 5 6 7 8 9 10 |
<?php header("Content-Type: image/png"); $image = imagecreate(180, 20); $back = imagecolorallocate($image, 255, 255, 255); $font = imagecolorallocate($image, 0, 0, 0); $txt = mb_convert_encoding("sample@mail.doshisha.ac.jp", "UTF-8"); ImageTTFText ($image, 12, 0, 5, 17, $font, "/users/www/fonts/ARIALN.TTF",$txt); imagepng($image); imagedestroy($image); ?> |