-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditImage.html
More file actions
44 lines (40 loc) · 1.35 KB
/
editImage.html
File metadata and controls
44 lines (40 loc) · 1.35 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Edit Image Demo</title>
<link rel="stylesheet" href="editImage.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="drawImage.js"></script>
<script src="FastBlur.js"></script>
</head>
<body onload="init2()">
<div id="image-edit">
<canvas id="canvas">
Browser not support canvas
</canvas>
<canvas id="tempCanvas">
Browser not support canvas
</canvas>
<div class="listTerms">
<ul>
<li><img width="50" height="50"
src="http://image.prntscr.com/image/73958852631d4a079049832223c9e3b4.png" /></li>
<li><img width="50" height="50"
src="http://image.prntscr.com/image/2025e7ba63284457b0d2242ad50678e9.png" /></li>
<li><img width="50" height="50"
src="http://image.prntscr.com/image/18f3262c16bc4daabc7181e92147474e.png" /></li>
</ul>
</div>
</div>
<div class="button-center">
<span class="fa fa-plus-circle stampImage red">Stamp</span> <span
class="fa fa-tint blurImage red">Blur</span>
<input id="undo" type="button" value="Undo" class="myButton" /> <input
type="button" value="Save" class="myButton" /> <br>
<br>
<p>画像の一部を「ぼかす」ことができます。 人の顔や氏名などの個人情報を隠したい場合にお使いください。</p>
</div>
</body>
</html>