-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (84 loc) · 3.69 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<title>CSFelix - Text Image Extractor</title>
<!-- logotipo -->
<link rel="icon" href="./assets/logo.avif" />
<link rel="apple-touch-icon" href="./assets/logo.avif">
<!-- metas -->
<meta charset="utf-8" />
<meta http-equiv="content-language" content="en" />
<meta name="theme-color" content="#7159c1" />
<meta name="author" content="@CSFelix" />
<meta name="keywords" content="html, html5, css, css3, javascript, js, text image extractor, extract text from images, aritifial intelligence, ai, machine learning, deep learning, projects, programming, computing, csfelix, github" />
<meta name="description" content="Extract text from any images! 📝" />
<meta property="og:image" content="./assets/logo.avif" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" />
<!-- css libraries -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="stylesheet" type="text/css" href="./css/libraries/vanillatoasts.css" />
<link rel="stylesheet" type="text/css" href="./css/libraries/hint.min.css" />
<!-- css styles -->
<link rel="stylesheet" type="text/css" href="./css/styles/global.css" />
<link rel="stylesheet" type="text/css" href="./css/styles/sections.css" />
<!-- js libraries -->
<script type="text/javascript" src="./js/libraries/vanillatoasts.js" defer></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/tesseract.min.js" defer></script>
<!-- js scripts -->
<script type="text/javascript" src="./js/scripts/main.js" defer></script>
</head>
<body>
<!--
******************
** Main Section **
******************
-->
<section id="mainSection">
<!--
************************************
** Image Text Extractor Container **
************************************
-->
<div id="imageTextExtractorContainer">
<!--
********************
** Extractor Area **
********************
-->
<div id="extractorArea">
<div id="extractorTitleContainer">
<h1 id="extractorTitle">📝 Image Text Extractor</h1>
</div>
<div id="extractorContainer">
<img id="extractorImage" onerror="this.src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII='" />
<span id="extractorArrow" class="material-icons hint--bottom hint--bounce" aria-label="Extract Text">rocket_launch</span>
<div id="extractorText">
<span id="extractedTextField"></span>
<span id="copyExtractedText" class="material-icons hint--bottom hint--bounce" aria-label="Copy Text">content_copy</span>
</div>
</div>
<div id="languageSelectorContainer">
<select name="languageSelector" id="languageSelector">
<option value="eng" selected>English</option>
<option value="jpn">Japanese</option>
<option value="por">Portuguese</option>
</select>
</div>
</div>
<!--
*******************
** Uploader Area **
*******************
-->
<div id="uploaderArea">
<label for="uploaderFileInput" id="uploaderFileLabel">
<span id="fileButtonSpan">Browse File</span>
<span id="fileNameSpan"></span>
</label>
<input id="uploaderFileInput" name="uploaderFileInput" type="file" accept="image/png, image/jpeg, image/webp, image/avif, image/jfif" aria-label="File Browser" />
<span id="uploaderFileSpan">Upload any image with English Text!</span>
</div>
</div>
</section>
</body>
</html>