-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (98 loc) · 4.32 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="ja">
<head>
<title>BMP完全に理解した</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="画像を様々な形式のBMP画像(Windows bitmap)に変換します。">
<meta property="og:site_name" content="BMP完全に理解した">
<meta property="og:title" content="BMP完全に理解した">
<meta property="og:description" content="画像を様々な形式のBMP画像(Windows bitmap)に変換します。">
<meta property="og:type" content="website">
<meta property="og:url" content="https://raclamusi.github.io/bmp-converter/">
<meta property="og:image" content="https://raclamusi.github.io/bmp-converter/icon.bmp">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@raclamusi">
<link rel="shortcut icon" type="image/bmp" href="icon.bmp">
<link rel="apple-touch-icon" type="image/bmp" href="icon.bmp">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main class="main">
<h1>BMP完全に理解した</h1>
<p>入力された画像を様々な形式のBMP(Windows bitmap)画像に変換します。</p>
<div class="input_div">
<label for="imageInput">BMPに変換する画像を選択してください</label>
<input type="file" id="imageInput" accept="image/*">
</div>
<div class="input_div">
<input type="checkbox" id="ditheringInput">
<label for="ditheringInput">ディザリング</label>
<div>
2色、16色、256色に減色する際に<a href="https://ja.wikipedia.org/wiki/%E3%83%87%E3%82%A3%E3%82%B6#%E3%83%87%E3%82%B8%E3%82%BF%E3%83%AB%E7%94%BB%E5%83%8F%E3%81%A8%E3%82%A4%E3%83%A1%E3%83%BC%E3%82%B8%E5%87%A6%E7%90%86">ディザリング</a>を施します。
</div>
<div>
有効にすると画像の見栄えがよくなりますが、処理時間が増加します。
</div>
</div>
<div class="input_div">
<button id="reconvertButton">再変換</button>
</div>
<div>
<table class="bmp_table">
<thead>
<tr>
<th></th>
<th>2色BMP</th>
<th>16色BMP</th>
<th>256色BMP</th>
<th>2<sup>15</sup>色BMP</th>
<th>2<sup>24</sup>色BMP</th>
</tr>
</thead>
<tbody>
<tr>
<th>無圧縮</th>
<td>
<div id="imageOutput1"></div>
<div id="sizeOutput1"></div>
</td>
<td>
<div id="imageOutput4"></div>
<div id="sizeOutput4"></div>
</td>
<td>
<div id="imageOutput8"></div>
<div id="sizeOutput8"></div>
</td>
<td>
<div id="imageOutput16"></div>
<div id="sizeOutput16"></div>
</td>
<td>
<div id="imageOutput24"></div>
<div id="sizeOutput24"></div>
</td>
</tr>
<tr>
<th>RLE</th>
<td class="disable"></td>
<td>
<div id="imageOutput4RLE"></div>
<div id="sizeOutput4RLE"></div>
</td>
<td>
<div id="imageOutput8RLE"></div>
<div id="sizeOutput8RLE"></div>
</td>
<td class="disable"></td>
<td class="disable"></td>
</tr>
</tbody>
</table>
</div>
</main>
<script type="text/javascript" src="converter.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>