2009-04-03 7 views
2

PNGにテキストを入力し、jpg/gifイメージとマージする方法はありますか?画像とテキストをマージする

+0

質問をもう少し詳しく説明できますか? jpg/gifイメージとpngをマージするとどういう意味ですか? – Alekc

答えて

1

ここで私はそれを行う方法です。

/* load the image */ 
$im = imagecreatefrompng("image.png"); 

/* black for the text */ 
$black = imagecolorallocate($im, 0, 0, 0); 

/* put the text on the image */ 
imagettftext($im, 12, 0, 0, 0, $black, "arial.ttf", "Hello World"); 

/* load the jpg */ 
$jpeg = imagecreatefromjpeg("image.jpeg"); 

/* put the png onto the jpeg */ 
/* you can get the height and width with getimagesize() */ 
imagecopyresampled($jpeg,$im, 0, 0, 0, 0, $jpeg_width, $jpeg_height, $im_width, $im_height); 

/* save the image */ 
imagejpeg($jpeg, "result.jpeg", 100); 

これはかなり簡単な例です。

関連する問題