ich habe mir auf http://mitglied.lycos.de/jmc/img/image.php ein kleines Bild mit PHP erstellt:
dies wird aber auf meiner Seite http://mitglied.lycos.de/jmc/img/index2.php nicht angezeigt:
woran liegt das?
PHP-Code:
<?php
$path = $_SERVER['DOCUMENT_ROOT'].'img/';
function randPass()
{
$arr1 = array('$','£');
$arr2 = range(0,9);
$arr = array_merge($arr1,$arr2);
$pass = '';
srand((float) microtime() * 10000000);
$rand_keys = array_rand($arr, 6);
for($i=0; $i<6; $i++)
{
$pass .= $arr[$rand_keys[$i]];
}
return $pass;
}
$im = imagecreatefromjpeg($path.'img.jpg');
$font = $path.'font.ttf';
$fontSize = 35;
$fontColor = imagecolorallocate($im, 240, 180, 156);
$getimgbox = imagettfbbox ( $fontSize, 5, $font, $secCode);
$h = $getimgbox[1]-$getimgbox[5];
$w = $getimgbox[2]-$getimgbox[6];
$hh = floor((60-$h)/2)+$fontSize;
$ww = floor((180-$w)/2);
imagettftext($im, $fontSize, 5, $ww, $hh, $fontColor, $font, $secCode);
header("Content-Type: image/jpeg");
imagejpeg($im,"",100);
imagedestroy($im);
?>
PHP-Code:
<?php
echo "<img src='image.php' alt='NO'>";
?>
Kommentar