Codice PHP:
<?php
header("Content-type: image/gif");
$user = $_GET['user'];
$country = $_GET['country'];
$sedia = $_GET['sedia'];
$case1 = "throne".$sedia."_1.gif";
$case2 = "throne".$sedia."_2.gif";
$im = imagecreatefromgif($case1);
$home = imagecreatefromgif("http://www.sito.$country/imaging/avatar?user=$user&action=sit&img_format=gif");
imagecopy($im, $home, 20, -15, 0, 0, 64, 110);
$throne = imagecreatefromgif($case2);
imagecopy($im, $throne, 0, 0, 0, 0, 70, 110);
//Create Image
imagegif($im);
imagedestroy($im);
?>