이미지 변환기Name
사진 또는 스크린샷의 텍스트를 번역합니다.
이미지에서 텍스트를 읽고 다른 언어로 된 표지판, 메뉴 및 문서에 적합한 단일 업로드에서 선택한 언어로 번역합니다.
자주 묻는 질문
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 문서 읽기 →