jeg har flg. php script, som fungerede korrekt på 1go's server,
har nu fået nyt webhotel hos surftown, og flg. kode virker IKKE,
nogle der har en grund til dette, og evt. hvad jeg kan gøre?
scriptet laver ingen fejl, men billedet bliver bare helt sort!
<?php
// Force the browser to reload
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// Force the browser not to cache
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
// Set the content-type
header("Content-type: image/png");
// Set some variables,
$font = "fonts/trebuc.TTF";
$fontsize = 9;
$margin = 5;
$height = 18;
$textsize = imagettfbbox($fontsize, 0, $font, $text);
$width = $textsize[2] - $textsize[0] + $margin * 2;
$type = $_GET[type];
$text = $_GET[text];
// Set some colors
$fontcolor = imagecolorallocate($image, 0, 0, 0);
$backgroundcolor = imagecolorallocate($image, 225, 165, 6);
$bordercolor = imagecolorallocate($image, 0, 0, 0);
// Create the image
$image = imagecreatetruecolor($width, $height);
// Fill the background
imagefill($image, 0, 0, $backgroundcolor);
// If type not equal to button, Make the border - in this order:
Vertical Top, Vertical Bottom, Horizontal Left and Horizontal
Right
if ($type != "button") {
imageline($image, 0, 0, $width, 0, $bordercolor);
imageline($image, 0, $height-1, $width, $height-1,
$bordercolor);
imageline($image, 0, 0, 0, $height, $bordercolor);
imageline($image, $width-1, 0, $width-1, $height,
$bordercolor);
}
// If type is equal to dis, "strike" the text
if ($type == "dis") {
imageline($image, $margin-2, $height/2, $width-$margin+1,
$height/2, $bordercolor);
}
// Add the text
imagettftext($image, $fontsize, 0, 5, 13, $fontcolor, $font,
$text);
// Use imagepng() there results in clearer text compared
imagepng($image);
imagedestroy($image);
?>
--
Vil du lære at kode HTML, XHTML, CSS, SSI, ASP eller ASP.NET?
- Pædagogiske tutorials på dansk
- Kom godt i gang med koderne
KLIK HER! =>
http://www.html.dk/tutorials