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 @@
# wkhtmltopdf
> 一个开源命令行工具用于将HTML文档或网页转换为PDF文件。
> 更多信息:<https://wkhtmltopdf.org/>.
- 将HTML文档转换为PDF
`wkhtmltopdf {{input.html}} {{output.pdf}}`
- 指定PDF页面大小请参见`QPrinter``PaperSize`以获取支持的大小):
`wkhtmltopdf --page-size {{A4}} {{input.html}} {{output.pdf}}`
- 设置PDF页面边距
`wkhtmltopdf --margin-{{top|bottom|left|right}} {{10mm}} {{input.html}} {{output.pdf}}`
- 设置PDF页面方向
`wkhtmltopdf --orientation {{Landscape|Portrait}} {{input.html}} {{output.pdf}}`
- 生成PDF文档的灰度版本
`wkhtmltopdf --grayscale {{input.html}} {{output.pdf}}`