PHP-Code:
header("content-type:image/png");
$image = imagecreatefromjpeg("../images/potu_bg.jpg");
$color = imagecolorallocate($image, 68, 19, 0);
$font = "/url/arial.ttf";
imagettftext($image, 36, 0, 10, 454, $color, $font, "$text");
imagepng($image);
PHP-Code:
header("content-type:image/png");
$image = imagecreatefromjpeg("../images/potu_bg.jpg");
$color = imagecolorallocate($image, 68, 19, 0);
$font = "/url/arial.ttf";
imagestring ($image, 5, 10, 370, "$text", $color);
imagepng($image);
kann mir jemand sagen was ich falsche mache? sobald ich das script los schicke bekomm ich nur die ausgangsdatei zu sehen, von dem text keine spur
mfg + thx im vorraus vidor
Kommentar