*pdf*: add Korean translation (#14354)

This commit is contained in:
코드싸이
2024-10-28 14:46:21 +09:00
committed by GitHub
parent 25bf74971a
commit 732f2d993c
27 changed files with 596 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# wkhtmltopdf
> HTML 문서나 웹 페이지를 PDF 파일로 변환하는 오픈 소스 명령줄 도구.
> 더 많은 정보: <https://wkhtmltopdf.org/>.
- HTML 문서를 PDF로 변환:
`wkhtmltopdf {{입력.html}} {{출력.pdf}}`
- PDF 페이지 크기 지정 (`QPrinter``PaperSize`에서 지원되는 크기를 참조):
`wkhtmltopdf --page-size {{A4}} {{입력.html}} {{출력.pdf}}`
- PDF 페이지 여백 설정:
`wkhtmltopdf --margin-{{top|bottom|left|right}} {{10mm}} {{입력.html}} {{출력.pdf}}`
- PDF 페이지 방향 설정:
`wkhtmltopdf --orientation {{Landscape|Portrait}} {{입력.html}} {{출력.pdf}}`
- PDF 문서를 그레이스케일로 생성:
`wkhtmltopdf --grayscale {{입력.html}} {{출력.pdf}}`