端くれプログラマの備忘録 PHP [PHP] 日本語テキストを合成する (GD)

[PHP] 日本語テキストを合成する (GD)

日本語TrueTypeフォントを使ったテキスト合成のサンプル。

<?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);

?>

test_text