「PHP学習」phpで著作権表示などの文字を追加するサンプルコード

phpコード:
$dst_path = 'be.jpg’;

//画像のインスタンスを作成
$dst = imagecreatefromstring(file_get_contents($dst_path));

//文字を追加
$font = './tt.ttf’;
$black = imagecolorallocate($dst, 0x00, 0x00, 0x00);//フォントの色
imagefttext($dst, 100, 0, 100, 500, $black, $font, 'arkgame.com IT技術’);

//画像を出力
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
case 1://GIF
header('Content-Type: image/gif’);
imagegif($dst);
break;
case 2://JPG
header('Content-Type: image/jpeg’);
imagejpeg($dst);
break;
case 3://PNG
header('Content-Type: image/png’);
imagepng($dst);
break;
default:
break;
}

imagedestroy($dst);

PHP

Posted by arkgame