com_index.html 859 B

123456789101112131415161718192021222324252627
  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="/com/" method="POST" enctype="multipart/form-data">
  10. <input type="file" name="picture">
  11. <input type="text" name="type" value="raw" hidden>
  12. <input type="submit" value="上传并识别">
  13. </form>
  14. <h2>过滤结果:</h2>
  15. <form action="/com/" method="POST" enctype="multipart/form-data">
  16. <input type="file" name="picture">
  17. <input type="text" name="type" value="filter" hidden>
  18. <input type="submit" value="上传并识别">
  19. </form>
  20. <h2>在线演示:</h2>
  21. <form action="/com/" method="POST" enctype="multipart/form-data">
  22. <input type="file" name="picture">
  23. <input type="text" name="type" value="html" hidden>
  24. <input type="submit" value="上传并识别">
  25. </form>
  26. </body>
  27. </html>