如何使用 Google API 翻译 .PDF 文件?
如何使用 Google API 翻译 .PDF
文件? (从 pdf 的语言翻译为俄语(新的 pdf 文件或纯文本或 html)。)(需要代码示例)
How to translate .PDF
files using google APIs? (translate from language the pdf's are to for example russian (new pdf file orplain text or html).) (code example needed)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 PDF 链接到
http://translate.google.com/translate?hl=fr&sl=auto&tl=en&u=http://www.example.com/PDF.pdf
查询参数:
hl : 原始语言
tl:要翻译的语言
u:PDF 的 URL
如果您想使用 AJAX API,我想您首先需要使用一些 PHP 从 PDF 中提取文本内容,然后使用 Google 用于翻译的 AJAX API。
You could link the PDFs to
http://translate.google.com/translate?hl=fr&sl=auto&tl=en&u=http://www.example.com/PDF.pdf
The query paramaters:
hl: original language
tl: language to translate to
u: URL for PDF
If you would like to use the AJAX API I guess you first need to extract the text content from the PDF with some PHP and then translate it with Googles AJAX API for translation.