ImageTTFText(画像ID, 文字サイズ, アングル, X座標, y座標, 文字色, フォントtのファイル,文字列); |
imagestring (画像ID, 文字サイズ, X座標, y座標, 文字列,文字色); |
<?php $txt = mb_convert_encoding("離れPHP島", "SJIS", "UTF-8"); $jpeg = "img/php/20040218.jpg"; $image = imagecreatefromjpeg($jpeg); $black = imagecolorallocate($image, 0,0,0); imagestring ($image, 5, 10, 10, $txt, $black); header("Content-type: image/jpeg"); imagejpeg($image); imagedestroy($image); ?> |
<img src="./php2005020101.php">
|
<?php $txt = "Copyright Masago Since 2005"; $jpeg = "img/php/20040218.jpg"; $image = imagecreatefromjpeg($jpeg); $black = imagecolorallocate($image, 0,0,0); imagestring ($image, 5, 10, 10, $txt, $black); header("Content-type: image/jpeg"); imagejpeg($image); imagedestroy($image); ?> |
<img src="./php2005020102.php">
|
<?php $txt = mb_convert_encoding("離れPHP島", "SJIS", "UTF-8"); $jpeg = "img/php/20040218.jpg"; $image = imagecreatefromjpeg($jpeg); $black = imagecolorallocate($image, 0,0,0); ImageTTFText ($image, 40, 0, 10, 60, $black, "../common/font/ipaexg.ttf",$txt); header("Content-type: image/jpeg"); imagejpeg($image); imagedestroy($image); ?> |
<img src="./php2005020103.php">
|
HOME |