Habe ein seltsames Problem:
Umgebung: PHP5
Möchte mit der Funktion "imagettftext" einen beliebigen Text als Bild ausgeben.
der Code:
<?php
header("Content-Type: image/jpeg");
$grafik = imagecreate(300,100);
$vfarbe = imagecolorallocate($grafik,255,255,255);
$hfarbe= imagecolorallocate($grafik,255,0,0);
$text="ABI 2005";
$vorschub = 50;
$vStart = 35;
// die Werte der Klammer: ($grafik, Schriftgröße, Rotation, X-Position, Y-Position, Textfarbe, "schriftdatei.ttf", $text);
imagettftext ($grafik, 25, 0, 15, $vStart, $hfarbe, "falcon.TTF", $text);
imagejpeg($grafik,"",100);
?>
Das funktioniert, jedoch möchte ich die Variable $text als URL übergeben, das funktioniert jedoch nicht.
z.B. "Schriften.php5?text=meinText"
Jemand einen Tipp ?
VIelen Dank !!!
Chris
Umgebung: PHP5
Möchte mit der Funktion "imagettftext" einen beliebigen Text als Bild ausgeben.
der Code:
<?php
header("Content-Type: image/jpeg");
$grafik = imagecreate(300,100);
$vfarbe = imagecolorallocate($grafik,255,255,255);
$hfarbe= imagecolorallocate($grafik,255,0,0);
$text="ABI 2005";
$vorschub = 50;
$vStart = 35;
// die Werte der Klammer: ($grafik, Schriftgröße, Rotation, X-Position, Y-Position, Textfarbe, "schriftdatei.ttf", $text);
imagettftext ($grafik, 25, 0, 15, $vStart, $hfarbe, "falcon.TTF", $text);
imagejpeg($grafik,"",100);
?>
Das funktioniert, jedoch möchte ich die Variable $text als URL übergeben, das funktioniert jedoch nicht.
z.B. "Schriften.php5?text=meinText"
Jemand einen Tipp ?
VIelen Dank !!!
Chris
Kommentar