わかりました、ベース画像 (background.png) 400x400 が必要です
そして、200x200 のアバターを imagestring を使用して imagecreatefrompng の background.png の上に配置します。
持っている: http://puu.sh/5KEAG.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);
?>