-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathextract.html
More file actions
21 lines (21 loc) · 745 Bytes
/
Copy pathextract.html
File metadata and controls
21 lines (21 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<meta name="copyright" content="Copyright © 2017/05/26- [email protected] . All Rights Reserved.">
<meta charset="utf-8">
<title> Image Extractor from Binary </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div>
maxWidthHeight:<input id="maxWidthHeightRange" type="range" min="16" max="2048" step="1" value="640">:<input type="text" id="maxWidthHeightText" size="5">
</div>
<div id="imageContainer">
Drop binary file(include image) here.
</div>
</div>
<script type="text/javascript" src="lib/drop.js"> </script>
<script type="text/javascript" src="lib/bind.js"> </script>
<script type="text/javascript" src="extract.js"> </script>
</body>
</html>