forked from brendan-duncan/image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter_lab.html
34 lines (31 loc) · 860 Bytes
/
filter_lab.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>filter_lab</title>
<link rel="stylesheet" href="res/filter_lab.css" />
</head>
<body>
<div id="toolbar">
<h1>Dart Image: Filter Lab</h1>
</div>
<div id="sidebar"></div>
<div id="editor">
<div class="contents">
<select id="FilterType">
<option>Sepia</option>
<option>Sobel</option>
<option>Vignette</option>
<option>Pixelate</option>
<option>Gaussian</option>
<option>Adjust Color</option>
<option>Color Offset</option>
</select>
<canvas id="filter_canvas"></canvas>
<div id="log"></div>
</div>
</div>
<script src="filter_lab.dart.js"></script>
</body>
</html>