Is there a way to submit a URL instead of uploading an image?
Cloud OCR submit URL instead of upload image
Was this article helpful?
0 out of 0 found this helpful
Is there a way to submit a URL instead of uploading an image?
0 out of 0 found this helpful
Comments
2 comments
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.
Please refer to ProcessRemoteImage method for your information.
Please sign in to leave a comment.