• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

problem with Headline in Gesior

tiago cysneiros

New Member
Joined
Apr 23, 2017
Messages
23
Reaction score
2
Guys... I guess I have deleted some importante code some years ago when I smoked fu$%*¨%$ much marijuana, so, now, I need help because my headline content are not appearing in any page.
cC3LW8

gwO4r8
gwO4r8


headline.php
PHP:
<?php
    $text = $_GET['txt'];
    $text = strtoupper($text[0]).substr($text,1,strlen($text));
    $size = 18;
    $sizex = 280;
    $sizey = 28;
    $x = 4;
    $y = 20;
    $color = 'efcfa4';
        $red = (int)hexdec(substr($color,0,2));
        $green = (int)hexdec(substr($color,2,2));
        $blue = (int)hexdec(substr($color,4,2));
    $img = imagecreatetruecolor($sizex,$sizey);
    ImageColorTransparent($img, ImageColorAllocate($img,0,0,0));
   
    imagefttext($img, $size, 0, $x, $y, ImageColorAllocate($img,$red,$green,$blue), './images/headline.ttf', $text);
   
    header('Content-type: image/png');
    imagepng($img);
    imagedestroy($img);

?>
 

Attachments

Similar threads

Back
Top