123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8">
- <title>upload index</title>
- </head>
- <body>
- <h2>原始OCR:</h2>
- <form action="/ocr-raw-api" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="submit" value="上传">
- </form>
- <h2>过滤结果:</h2>
- <form action="/ocr-filter" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="submit" value="上传">
- </form>
- <h2>图片演示:</h2>
- <form action="/ocr-html" method="POST" enctype="multipart/form-data">
- <input type="file" name="picture">
- <input type="submit" value="上传">
- </form>
- </body>
- </html>
|