Файл: masteram_us/work/logo/create.php
Строк: 39
<?php
require'../../shaxty.php';
$title='Создание лого';
$align = 'left';
$head = 'Создание лого';
include_once (H.'shaxty/head.php');
echo '<br />';
echo '<form action="download.php?" method="post">
<label>Текст надписи[a-Z]</label><br/>
<input name="text" type="text"/><br/>
<label>Угол поворота [1-180]</label><br/>
<input name="angle" type="text" value="1"/><br/>
<label>Размер шрифта [1-40]</label><br/>
<input name="size" type="text" value="20"/><br/>
<label>Цвет фона</label><br/>
<input name="bg" type="text" value="000000"/><br/>
<label>Прозрачность (фон) [0-127]<br/>(только PNG)</label><br/>
<input name="b_alpha" maxlength="3" type="text" value="0"/><br/>
<label>Цвет текста</label><br/>
<input name="txtcolor" type="text" value="FF0000"/><br/>
<label>Стиль шрифта</label><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 '<label>Формат</label><br/>
<select size="1" name="format">
<option value="jpeg">JPEG</option>
<option value="png">PNG</option>
<option value="gif">GIF</option>
</select>
<br/>
<input type="submit" value="Получить"/>
</form>
« <a href="index.php?">Назад</a><br/>';
echo '« <a href="/work/?">В Раздел</a>';
echo '<br />';
include_once (H.'shaxty/foot.php');
foot();?>