Hi,
ich hab ein prolem und das heißt image erstellen.
sm1.php
echo '<form action=sm2.php method=post>';
echo "<br>";
echo "Text";
echo "<input type=text name=Name size=30 maxlength=50 value=Hallo>";
echo "<br>";
echo '<input type=submit value=Erstellen name=extrasender>';
echo '</form>';
sm2.php
$Name = $HTTP_POST_VARS["Name"];
$im = ImageCreateFromJPEG("1.jpg");
$back_color = ImageColorAllocate($im,255, 0, 0);
$text_color = ImageColorAllocate($im,000,000,000);
$farbe = ImageColorAllocate($im,255, 127, 33);
ImageString($im,5,3,4, "$Name", $text_color);
ImageFilledRectangle($im, 130, 30, 175, 45, $farbe);
Header("Content-type: image/png");
ImagePNG($im);
ImageDestroy($im);
So das funktioniert alles super aber ich kann die Image nicht abspeichern.
Ich speichere immer nur die 1.jpg ab un der text ist nicht da.
Wenn man aber statt der Variablen $Namef einen festen Wert eingibt z.B. "hallo" dann kann man die Image mit Text abspeichern, was mir aber nicht viel hilft.
Kann mir da einer helfen
Danke
ich hab ein prolem und das heißt image erstellen.
sm1.php
echo '<form action=sm2.php method=post>';
echo "<br>";
echo "Text";
echo "<input type=text name=Name size=30 maxlength=50 value=Hallo>";
echo "<br>";
echo '<input type=submit value=Erstellen name=extrasender>';
echo '</form>';
sm2.php
$Name = $HTTP_POST_VARS["Name"];
$im = ImageCreateFromJPEG("1.jpg");
$back_color = ImageColorAllocate($im,255, 0, 0);
$text_color = ImageColorAllocate($im,000,000,000);
$farbe = ImageColorAllocate($im,255, 127, 33);
ImageString($im,5,3,4, "$Name", $text_color);
ImageFilledRectangle($im, 130, 30, 175, 45, $farbe);
Header("Content-type: image/png");
ImagePNG($im);
ImageDestroy($im);
So das funktioniert alles super aber ich kann die Image nicht abspeichern.
Ich speichere immer nur die 1.jpg ab un der text ist nicht da.
Wenn man aber statt der Variablen $Namef einen festen Wert eingibt z.B. "hallo" dann kann man die Image mit Text abspeichern, was mir aber nicht viel hilft.
Kann mir da einer helfen
Danke
Kommentar