Spaces:
Sleeping
Sleeping
File size: 10,339 Bytes
41f3e48 cb8b30e |
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OCR Translation - English to Hindi</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.loader {
border: 3px solid #f3f3f3;
border-radius: 50%;
border-top: 3px solid #3498db;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.drop-zone {
border: 2px dashed #cbd5e0;
transition: all 0.3s ease;
}
.drop-zone:hover {
border-color: #3498db;
background-color: #f8fafc;
}
.result-box {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.result-box:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.custom-file-input::-webkit-file-upload-button {
visibility: hidden;
width: 0;
}
.custom-file-input::before {
content: 'Choose File';
display: inline-block;
background: #3498db;
color: white;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
}
.translate-btn {
background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
transition: all 0.3s ease;
}
.translate-btn:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}
.error-message {
background-color: #fee2e2;
border: 1px solid #ef4444;
color: #b91c1c;
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
display: none;
}
</style>
</head>
<body class="min-h-screen py-12 px-4">
<div class="container mx-auto max-w-4xl">
<!-- Header -->
<div class="text-center mb-12">
<h1 class="text-4xl font-bold text-gray-800 mb-3">
<i class="fas fa-language mr-2"></i>OCR Translation
</h1>
<p class="text-gray-600">English to Hindi Translation with Image Recognition</p>
</div>
<!-- Error Message Box -->
<div id="errorMessage" class="error-message mb-4">
<i class="fas fa-exclamation-circle mr-2"></i>
<span id="errorText">Error message will appear here</span>
</div>
<!-- Main Content -->
<div class="bg-white rounded-xl shadow-lg p-8 mb-8">
<!-- Upload Section -->
<div class="drop-zone rounded-lg p-8 text-center mb-6">
<div class="mb-4">
<i class="fas fa-cloud-upload-alt text-4xl text-gray-400 mb-3"></i>
<h3 class="text-lg font-semibold text-gray-700 mb-2">Upload Image</h3>
<p class="text-sm text-gray-500 mb-4">Support for PNG, JPG, JPEG, GIF, BMP</p>
</div>
<input type="file"
id="imageInput"
accept="image/*"
class="custom-file-input w-full mb-4 cursor-pointer">
<button id="translateBtn" onclick="processImage()"
class="translate-btn w-full py-3 px-6 text-white rounded-lg font-medium flex items-center justify-center">
<i class="fas fa-sync-alt mr-2"></i>
<span>Translate Now</span>
</button>
<div id="loader" class="loader mx-auto mt-4"></div>
</div>
<!-- Preview Section -->
<div id="previewSection" class="hidden mb-6">
<h3 class="text-lg font-semibold text-gray-700 mb-3">Image Preview</h3>
<img id="imagePreview" class="max-w-full h-auto rounded-lg shadow" src="" alt="Preview">
</div>
<!-- Results Section -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Original Text -->
<div class="result-box rounded-xl p-6">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-700">
<i class="fas fa-file-alt mr-2"></i>Extracted Text
</h3>
<button onclick="copyText('extractedText')" class="text-blue-500 hover:text-blue-600">
<i class="far fa-copy"></i>
</button>
</div>
<div id="extractedText" class="p-4 bg-gray-50 rounded-lg min-h-[150px] text-gray-700">
<!-- Extracted text will appear here -->
</div>
</div>
<!-- Translated Text -->
<div class="result-box rounded-xl p-6">
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold text-gray-700">
<i class="fas fa-language mr-2"></i>Hindi Translation
</h3>
<button onclick="copyText('translatedText')" class="text-blue-500 hover:text-blue-600">
<i class="far fa-copy"></i>
</button>
</div>
<div id="translatedText" class="p-4 bg-gray-50 rounded-lg min-h-[150px] text-gray-700"
style="font-family: 'Noto Sans Devanagari', sans-serif;">
<!-- Translated text will appear here -->
</div>
</div>
</div>
</div>
</div>
<script>
function showError(message) {
const errorDiv = document.getElementById('errorMessage');
const errorText = document.getElementById('errorText');
errorText.textContent = message;
errorDiv.style.display = 'block';
}
function hideError() {
document.getElementById('errorMessage').style.display = 'none';
}
// Image preview functionality
document.getElementById('imageInput').addEventListener('change', function(e) {
const file = e.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = function(e) {
document.getElementById('imagePreview').src = e.target.result;
document.getElementById('previewSection').classList.remove('hidden');
}
reader.readAsDataURL(file);
hideError(); // Hide any previous errors
}
});
// Copy text functionality
function copyText(elementId) {
const text = document.getElementById(elementId).textContent;
navigator.clipboard.writeText(text).then(() => {
// Show a brief notification
const element = document.getElementById(elementId);
const originalBackground = element.style.backgroundColor;
element.style.backgroundColor = '#e8f5e9';
setTimeout(() => {
element.style.backgroundColor = originalBackground;
}, 500);
});
}
function processImage() {
const fileInput = document.getElementById('imageInput');
const loader = document.getElementById('loader');
const extractedTextDiv = document.getElementById('extractedText');
const translatedTextDiv = document.getElementById('translatedText');
if (!fileInput.files[0]) {
showError('Please select an image first');
return;
}
const formData = new FormData();
formData.append('file', fileInput.files[0]);
// Hide previous errors
hideError();
// Show loader and clear previous results
loader.style.display = 'block';
extractedTextDiv.textContent = '';
translatedTextDiv.textContent = '';
fetch('/upload', {
method: 'POST',
body: formData
})
.then(response => {
if (!response.ok) {
return response.json().then(data => {
throw new Error(data.error || `Server error: ${response.status}`);
});
}
return response.json();
})
.then(data => {
extractedTextDiv.textContent = data.original_text;
translatedTextDiv.textContent = data.translated_text;
// Check if the response contains error messages
if (data.original_text && data.original_text.startsWith('Could not extract text')) {
showError(data.original_text);
}
})
.catch(error => {
console.error('Error:', error);
showError(error.message || 'An unknown error occurred');
extractedTextDiv.textContent = 'Error: Could not process image.';
translatedTextDiv.textContent = 'Translation unavailable due to processing error.';
})
.finally(() => {
loader.style.display = 'none';
});
}
</script>
</body>
</html> |