View file wap/logo.php
<?php
if($s1>500)$s1=500;
if($s2>500)$s2=500;
$im = imagecreate($s1, $s2);
$background_color = ImageColorAllocate($im, $b1, $b2, $b3);
$color = ImageColorAllocate($im, $c1, $c2, $c3);
ImageTTFText($im, $fsize, $angle, $x, $y, $color, "fonts/".$font, $text);
if($cont==1)
{
header("Content-Type: image/jpeg");
ImageJPG($im);
}else if($cont==2)
{
header("Content-Type: image/gif");
ImageGIF($im);
}else{
header("Content-Type: image/PNG");
ImagePNG($im);
}
ImageDestroy($im);
?>