使用imagestring在基本图像上创建imagecreatefrompng图像

时间:2013-12-12 21:14:04

标签: php imagecreatefrompng

好的,我想要一个基本图像(background.png)400x400

An Avatar,200x200,并使用imagestring将其放在imagecreatefrompng中的background.png上

拥有:http://puu.sh/5KEAG.png

想要:http://puu.sh/5KEF4.png

到目前为止

代码;

<?php
$image = ('background.png');

$im = imagecreatefrompng($image);

$white = imagecolorallocate($im, 255, 255, 255);
$width = imagesx($im);
$height = imagesy($im);

//where I want image avatar.png 200x200

Header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>

0 个答案:

没有答案