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

28
pages.zh/linux/pdfcrop.md Normal file
View File

@@ -0,0 +1,28 @@
# pdfcrop
> 检测并去除 PDF 文件每一页的边距。
> 更多信息:<https://github.com/ho-tex/pdfcrop>。
- 自动检测并去除 PDF 文件每一页的边距:
`pdfcrop {{path/to/input_file.pdf}} {{path/to/output_file.pdf}}`
- 将每一页的边距设置为特定值:
`pdfcrop {{path/to/input_file.pdf}} --margins '{{left}} {{top}} {{right}} {{bottom}}' {{path/to/output_file.pdf}}`
- 将每一页的边距设置为特定值,左、上、右和下使用相同的值:
`pdfcrop {{path/to/input_file.pdf}} --margins {{300}} {{path/to/output_file.pdf}}`
- 使用用户定义的边界框进行裁剪,而不是自动检测:
`pdfcrop {{path/to/input_file.pdf}} --bbox '{{left}} {{top}} {{right}} {{bottom}}' {{path/to/output_file.pdf}}`
- 为奇数页和偶数页使用不同的用户定义的边界框:
`pdfcrop {{path/to/input_file.pdf}} --bbox-odd '{{left}} {{top}} {{right}} {{bottom}}' --bbox-even '{{left}} {{top}} {{right}} {{bottom}}' {{path/to/output_file.pdf}}`
- 使用较低的分辨率自动检测边距以提高性能:
`pdfcrop {{path/to/input_file.pdf}} --resolution {{72}} {{path/to/output_file.pdf}}`