unnamed file

PHP

No Description

Guest

Download Edit

<?php
$myriad = \"includes/fonts/MyriadPro-Regular.otf\";
$image = imagecreate(300,150);
//$image, size, angle, x, y, color, font, text
imageTTFText($image, 12, 0, 120, 125, $textcolor, $myriad, $gamemode);
header(\'Content-Type: image/png\');
imagepng($image);
?>