prova questo:
Codice PHP:
<?php
if(isset($_GET['frase']))
{
$imgw=0;
$imgh=0;
$actw=0;
$parola = stripslashes($_GET['frase']);
for($x=0, $y=strlen($parola); $x<$y; $x++)
{
$files[$x] = $parola{$x}.".gif";
list($width, $height) = getimagesize($files[$x]);
$imgw+= $width;
$imgh = ($height > $imgh ? $height : $imgh);
}
$newimage = imagecreatetruecolor($imgw, $imgh);
for($x=0, $y=count($files); $x<$y; $x++)
{
$image = imagecreatefromgif($files[$x]);
$width=imagesx($image);
$height=imagesy($image);
imagecopyresampled($newimage, $image, $actw, 0, 0, 0, $width, $height, $width, $height);
$actw+=$width;
}
}
header("Content-type: image/gif");
imagegif($newimage);
?>