index.html 680 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>upload index</title>
  6. </head>
  7. <body>
  8. <h2>原始OCR:</h2>
  9. <form action="/ocr-raw-api" method="POST" enctype="multipart/form-data">
  10. <input type="file" name="picture">
  11. <input type="submit" value="上传">
  12. </form>
  13. <h2>过滤结果:</h2>
  14. <form action="/ocr-filter" method="POST" enctype="multipart/form-data">
  15. <input type="file" name="picture">
  16. <input type="submit" value="上传">
  17. </form>
  18. <h2>图片演示:</h2>
  19. <form action="/ocr-html" method="POST" enctype="multipart/form-data">
  20. <input type="file" name="picture">
  21. <input type="submit" value="上传">
  22. </form>
  23. </body>
  24. </html>