PHP:
<?
if(!$text) $text = 'inhalt mit ?text="text"';
if(!$ge) $text2 = 'ph4b.info';
$groesse = 3;
$groesse2 = 1;
$width = imagefontwidth($groesse)*strlen($text)+10;
if($width < 57) $width = 110;
$width2 = $width-1;
$height = 46;
$imgA = imagecreatefrompng("smiley.png");
$img = imagecreate($width,$height);
imagecopyresized($img, $imgA, 0, 0, 0, 0, 56, 46, 56, 46);
$white = imagecolorallocate($img,255,255,255);
$black = imagecolorallocate($img,0,0,0);
$bg = imagecolorallocate($img,212,255,128);
imagefill($img,0,0,$bg);
imageline($img,0,4,$width2,4,$black);
imageline($img,0,28,$width2,28,$black);
imageline($img,0,4,0,28,$black);
imageline($img,$width2,4,$width2,28,$black);
imagefill($img,1,6,$white);
imagestring($img,$groesse,5,7,stripslashes($text),$black);
imagestring($img,$groesse2,5,19,'ph4b.info',$black);
imagecolortransparent($img,$bg);
header("Content-Type: image/png");
imagepng($img);
?>
Kann mir jemand den Code mal erläutern und mir vor allem sagen wie ich das hinbring, dass der Smily zentriert ist und nicht links ?
Klick mich für Beispiel