-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFormRecognizer.html
More file actions
35 lines (35 loc) · 1.1 KB
/
FormRecognizer.html
File metadata and controls
35 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Form Recognizer Sample - Microsoft Azure Applied AI Services</title>
<link rel="stylesheet" href="css/site.css">
<script src="scripts/jquery-3.4.1.min.js"></script>
<script src="scripts/formrecognizer_script.js"></script>
</head>
<body>
<div>
<h1>Microsoft Cognitive Services | Applied AI Services</h1>
<h2>Form Recognizer Sample</h2>
<!--画像をアップロード-->
<input type="file" id="imageFile" accept="image/*" /><br/>
<input type="button" id="getResult" value="Analyze" />
</div>
<table>
<tr>
<td class="OutputTh">
<!--出力結果-->
<div id="OutputDiv">画像を選択してください</div>
</td>
</tr>
<tr>
<td>
<!--出力画像-->
<div id="PhotoDiv">
<img id="ImageToAnalyze">
</div>
</td>
</tr>
</table>
</body>
</html>