Hallo,
ich habe folgendes Problem:
Folgender Tag soll das script textbuttons.php aufrufen und das Wort "text" auf ein Bild bzw. Button legen.
<img src="taste.php3?text">
Das Sript sieht folgendermaßen aus:
<?php
Header("Content-type: image/png");
$string=implode($argv," ");
$im = imagecreatefrompng("images/taste1.png");
$orange = ImageColorAllocate($im, 220, 210, 60);
$px = (imagesx($im)-7.5*strlen($string))/2;
ImageString($im,3,$px,9,$string,$orange);
ImagePng($im);
ImageDestroy($im);
?>
Bei mir funktioniert das nicht. Gibt immer einen broken picture link zurück
ich habe folgendes Problem:
Folgender Tag soll das script textbuttons.php aufrufen und das Wort "text" auf ein Bild bzw. Button legen.
<img src="taste.php3?text">
Das Sript sieht folgendermaßen aus:
<?php
Header("Content-type: image/png");
$string=implode($argv," ");
$im = imagecreatefrompng("images/taste1.png");
$orange = ImageColorAllocate($im, 220, 210, 60);
$px = (imagesx($im)-7.5*strlen($string))/2;
ImageString($im,3,$px,9,$string,$orange);
ImagePng($im);
ImageDestroy($im);
?>
Bei mir funktioniert das nicht. Gibt immer einen broken picture link zurück