mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-13 17:24:54 +02:00
First public release of MyAAC
This commit is contained in:
42
templates/tibiacom/headline.php
Normal file
42
templates/tibiacom/headline.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?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=' . dirname(__FILE__));
|
||||
|
||||
// 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);
|
||||
?>
|
Reference in New Issue
Block a user