Community

Cloud OCR submit URL instead of upload image

Is there a way to submit a URL instead of uploading an image?

Was this article helpful?

0 out of 0 found this helpful

Comments

2 comments

  • Avatar
    Permanently deleted user

    Can you specify the reason why you need this? I solved it with this code (snippet / Java)

    URL url = new URL("http://upload.wikimedia.org/wikipedia/commons/3/3d/FuBK-Testbild.png"); BufferedImage img = ImageIO.read(url); File file = new File("downloaded.jpg");

    Now I "upload" this File without having it on my HDD.

    0
  • Avatar
    Permanently deleted user

    Please refer to ProcessRemoteImage method for your information.

    0

Please sign in to leave a comment.