-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesseract.html
More file actions
41 lines (36 loc) · 1.26 KB
/
tesseract.html
File metadata and controls
41 lines (36 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tesseract Backend Test</title>
</head>
<body>
<input type="file" id="fileInput">
<button id="uploadBtn">Upload</button>
<div id="output"></div>
<script>
document.getElementById('uploadBtn').addEventListener('click', async () => {
const fileInput = document.getElementById('fileInput');
const file = fileInput.files[0];
if (!file) {
alert('파일을 선택하세요!');
return;
}
const formData = new FormData();
formData.append("file", file);
try {
const response = await fetch("http://localhost:8080/upload", {
method: "POST",
body: formData
});
const result = await response.json();
document.getElementById("output").innerText = result.text;
} catch (error) {
console.error("Error:", error);
alert("OCR 처리 중 오류가 발생했습니다.");
}
});
</script>
</body>
</html>