File size: 2.07Kb
<?php
############################################################
#-Название: 5 SECOND LOGO #
#-Версия: 2.2 #
#-Автор: Клишин Сергей Алексндрович (Sirioga) #
#-ICQ: 357968948 #
#-E-mail: [email protected] #
#-ТИП Скрипта: ПЛАТНЫЙ #
############################################################
include("other/head.php");
echo "<center class=\"b\">";
echo "<form action=\"download.php\" method=\"post\">";
echo "Текст надписи[a-Z.]<br/><input name=\"text\" type=\"text\" value=\"\"><br/>";
echo "Угол поворота [1-180]<br/><input name=\"angle\" type=\"text\" value=\"\"><br/>";
echo "Размер шрифта [1-40]<br/><input name=\"size\" type=\"text\" value=\"20\"><br/>";
echo "Цвет фона RGB [1-255]<br/><input name=\"bg1\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"0\"><input name=\"bg2\" size=\"3\" maxlength=\"3\" type=\"text\" value=\"0\"><input name=\"bg3\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"0\"><br/>";
echo "Цвет текста RGB [1-255]<br/><input name=\"txtcolor1\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"255\"><input name=\"txtcolor2\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"255\"><input name=\"txtcolor3\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"255\"><br/>";
echo"Стиль Шрифта<br/>
<select name='font' class='textbox'>";
$dir = opendir ("fonts/");
while ($file = readdir ($dir))
{
if (( $file != ".") && ($file != "..") && ($file != ".htaccess") && ($file != "index.php") && ($file != "$css.css") )
{ $file= str_replace(".ttf","",$file);
echo "<option>$file</option>";
}}
echo "</select><br/>";
closedir ($dir);
echo "Формат<br/><select size=\"1\" name=\"format\">
<option value=\"jpeg\">JPEG</option>
<option value=\"png\">PNG</option>
<option value=\"wbmp\">WBMP</option>
</select>";
echo "<br/><input type=\"submit\" value=\"Получить\">";
echo "</form>";
echo "</center>";
include("other/foot.php");
?>