-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (67 loc) · 2.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ANSI ART</title>
<link rel="stylesheet" href="art.css">
</head>
<body>
<div class="main_content">
<h1>ANSIアートコンバーター</h1>
<div class="description_text">
<p>せつめい</p>
<ul>
<li>画像ファイルからターミナルでドット絵を表示するシェルスクリプトを生成します</li>
<li>1ドットをスペース二つで表現します</li>
<li>ドットの大きさは自動で認識しますが、正しくない場合は手動入力してください</li>
<li>画像にノイズがあるとドットの大きさを自動認識できません</li>
<li>ターミナルは24bitカラーに対応したものを使用してください</li>
</ul>
</div>
<div class="pic_wrapper">
<img class="pixelart" id=pixeldisplay></img>
</div>
<br />
<table class="info_table">
<tr>
<th>画像サイズ</th>
<td id="img_size">-</td>
</tr>
<tr>
<th>ドットの大きさ</th>
<td id="guessed_dot_size">-</td>
</tr>
</table>
<form id="main_form">
<label class="button">
画像ファイルを選択
<input type="file" accept="image/*" id="imgfile" style="display:none">
</label>
<p>ドットの大きさの取得方法を選択してください</p>
<div>
<label><input id="dotsize_auto" type="radio" name="resize_mode" value="auto" checked>自動認識</label>
<label><input id="dotsize_user" type="radio" name="resize_mode" value="user">手動入力</label>
</div>
<label>ドットの大きさ: <input type="text" name="px_size" size="5" readonly> px</label>
<p>カラーモードを選択してください</p>
<div>
<label><input type="radio" name="cmode" value="24bit" checked>24bitカラー</label>
<label><input type="radio" name="cmode" value="8bit">8bitカラー</label>
</div>
<label class="button">
コマンド生成!
<input type="submit" style="display:none">
</label>
</form>
<br />
<canvas class="convdata" id="canvas"></canvas>
<br />
<span id="copy_ok_message">コピーしました!</span>
<div class="code_div">
<textarea id="code" rows="12" readonly>ここにコードが出ます</textarea>
<div id="copy_button" class="copy_button">コピー</div>
</div>
<script type="text/javascript" src="main.js"></script>
</div>
</body>
</html>