好的,我想要一个基本图像(background.png)400x400
An Avatar,200x200,并使用imagestring将其放在imagecreatefrompng中的background.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);
?>