-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperspective.html
53 lines (52 loc) · 1.41 KB
/
perspective.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
<!DOCTYPE html>
<html>
<head>
<title>From Your Perspective - By Gant Laborde</title>
<meta charset="UTF-8" />
</head>
<body>
<a href="/"><- BACK</a>
<div>
<p>Image Options</p>
<button id="firstImg">1</button>
<button id="secondImg">2</button>
<button id="thirdImg">3</button>
<button id="fourthImg">4</button>
<button id="fifthImg">5</button>
</div>
<div style="position: relative;">
<img
id="card"
crossorigin="anonymous"
src="/1.jpg"
style="max-width: 99%;"
/>
<canvas
id="drawContainer"
width="600"
height="600"
style="
border: 1px solid #333;
position: absolute;
left: 0;
cursor: crosshair;
"
></canvas>
</div>
<canvas
id="zoomCanvas"
width="100"
height="100"
style="border: 1px solid red; position: absolute; visibility: hidden;"
></canvas>
<button id="firstLine">Record First Edge</button>
<button id="secondLine">Record Second Edge</button>
<button id="processTransform">Process!</button>
<p id="statusBox"></p>
<canvas id="resultCanvas" width="600" height="600"> </canvas>
<div>
<img id="result" style="max-width: 60%; margin-top: 30%;" />
</div>
<script src="src/perspective.js"></script>
</body>
</html>