日本語TrueTypeフォントを使ったテキスト合成のサンプル。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<?php header("Content-type: image/png"); $width = 600; $height = 200; $img = imagecreatetruecolor($width, $height); $blue = imagecolorallocate($img, 200, 200, 255); imagefilledrectangle($img, 0, 0, $width-1, $height-1, $blue); $x = 100; $y = 100; $text = "愛されて豊穣の日本語フォント"; $font = "fonts/mplus-1mn-bold.ttf"; $black = imagecolorallocate($img, 0, 0, 0); imagettftext($img, 20, 0, $x, $y, $black, $font, $text); imagepng($img); imagedestroy($img); ?> |