Cloud OCR submit URL instead of upload image Written by Permanently deleted user 2014年11月01日 00:27 2 Is there a way to submit a URL instead of uploading an image? この記事は役に立ちましたか? 0人中0人がこの記事が役に立ったと言っています はい いいえ
コメント
2件のコメント
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.
サインインしてコメントを残してください。