add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,24 @@
# pdftotext
> 将 PDF 文件转换为纯文本格式。
> 更多信息:<https://www.xpdfreader.com/pdftotext-man.html>。
-`filename.pdf` 转换为纯文本并打印到 `stdout`
`pdftotext {{filename.pdf}} -`
-`filename.pdf` 转换为纯文本并保存为 `filename.txt`
`pdftotext {{filename.pdf}}`
-`filename.pdf` 转换为纯文本并保留布局:
`pdftotext -layout {{filename.pdf}}`
-`input.pdf` 转换为纯文本并保存为 `output.txt`
`pdftotext {{input.pdf}} {{output.txt}}`
-`input.pdf` 的第 2、3 和 4 页转换为纯文本并保存为 `output.txt`
`pdftotext -f {{2}} -l {{4}} {{input.pdf}} {{output.txt}}`