dervin13
Active Member
- Joined
- Apr 26, 2008
- Messages
- 459
- Solutions
- 1
- Reaction score
- 28
I changed my xampp version to new one and the headline isnt work anymore, the img dont show... I already tried everything
Anyone know what could be? If it need any extension?
If I try to open it in chrome it shows The image cannot be displayed because it contains errors.
thanks
Anyone know what could be? If it need any extension?
If I try to open it in chrome it shows The image cannot be displayed because it contains errors.
Code:
<?php
//require '../../common.php';
//$text = $_GET['text'];
/*
$page_file = BASE . 'pages/' . PAGE . '.php';
if(!@file_exists($page_file))
{
$page_file = BASE . 'pages/custom/' . PAGE . '.php';
if(!@file_exists($page_file))
die('Page does not exists.');
}
*/
//$file = 'images/header/headline-' . PAGE . '.gif';
//if(!file_exists($file))
//{
if(strlen($_GET['t']) > 100) // max limit
$_GET['t'] = '';
// set font path
putenv('GDFONTPATH=' . __DIR__);
// create image
$image = imagecreatetruecolor(250, 28);
// make the background transparent
imagecolortransparent($image, imagecolorallocate($image, 0, 0, 0));
// set text
imagettftext($image, 18, 0, 4, 20, imagecolorallocate($image, 240, 209, 164), 'martel.ttf', utf8_decode($_GET['t']));
// header mime type
header('Content-type: image/gif');
// save image
imagegif($image/*, $file*/);
//}
// output image
//header('Content-type: image/gif');
//readfile($file);
?>
thanks