-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.11 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type='text/javascript' src='http://code.jquery.com/jquery-latest.min.js'></script>
<script type='text/javascript' src='crop.js'></script>
<style>
canvas { box-shadow: 0 0 10px black; margin: 20px; }
</style>
</head>
<body>
<table>
<tr>
<td>
<input type="button" id="crop" value="CROP" />
<div id="container">
<canvas width="217" height="275" id="myCanvas" style="position:relative;margin-left:0px;margin-top:0px;"></canvas>
</div>
<div id="png" style="display:block;">Click on the image sequential points forming the shape to be cropped and click on CROP button.<br/> Refresh to restart.</div>
<div id="oldposx" style="display:none;"></div>
<div id="oldposy" style="display:none;"></div>
<div id="posx" style="display:none;"></div>
<div id="posy" style="display:none;"></div>
</td><td>
<i>HERE APPEARS THE UPLOADED IMAGE</i>
<div id="myimg"></div><!--preview of image after upload-->
</td>
</tr>
</table>
</body>
</html>