-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image to Text Converter</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.2/cropper.min.css" />
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<h1>Text Ripper</h1> <!-- This could be an image too if you have a logo image -->
</div>
<div class="navbar-buttons">
<button class="buy-button" onclick="window.open('https://www.buymeacoffee.com/yourusername', '_blank')">Buy Me a Coffee</button>
</div>
</div>
</header>
<div class="container">
<input type="file" id="imageInput" accept="image/*">
<label for="languageSelect">Select Document Language:</label>
<select id="languageSelect">
<option value="eng">English</option>
<option value="ces">Czech</option>
<option value="deu">German</option>
<option value="fra">French</option>
<option value="rus">Russian</option>
<option value="chi_sim">Chinese - Simplified</option>
<option value="ara">Arabic</option>
</select>
<button id="extractButton">Extract Text</button>
<div id="loadingMessage" style="display: none;">Extracting text, please wait...</div>
<div id="loadingSpinner" style="display: none;" class="spinner"></div>
<div id="output"></div>
<h2>Edit Extracted Text</h2>
<div class="text-panel-container">
<button id="copyTextButton" class="copy-button">Copy Text</button>
<textarea id="textPanel" rows="10" cols="50" placeholder="Edit the extracted text here..."></textarea>
</div>
</div>
<footer>
<div class="footer-content">
<p>© <span id="currentYear"></span> Your company. All rights reserved.</p>
<p><a href="privacy-policy.html">Privacy Policy</a> | <a href="contact.html">Contact Us</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/tesseract.js@5/dist/tesseract.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.2/cropper.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>