イメージトランスレータ
写真やスクリーンショットのテキストを翻訳します。
画像からテキストを読み込み、一度に選択した言語に翻訳します。他の言語のサイン、メニュー、文書に適しています。
よくある質問
Major world languages. Pick your target language before uploading.
API を通してこれを使う
このツールをプログラム的に実行します。一つの POST で実行します。アカウントページから API トークンで認証します。
curl -X POST https://ocr.chat/api/v1/ocr/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "file=@your-file.png" \
-F "tool=image-translator" \
-F "translate_to=en"
5 ページ以下のファイルはインラインで結果を返します。それ以外の場合はジョブをポールし、次にダウンロードします。 txt:
curl -L "https://ocr.chat/api/v1/ocr/JOB_UUID/download/?format=txt" \
-H "Authorization: Bearer YOUR_API_TOKEN" -o result.txt
API ドキュメントを読む →