tldr/pages.ko/common/wkhtmltopdf.md
2024-10-28 06:46:21 +01:00

739 B

wkhtmltopdf

HTML 문서나 웹 페이지를 PDF 파일로 변환하는 오픈 소스 명령줄 도구. 더 많은 정보: https://wkhtmltopdf.org/.

  • HTML 문서를 PDF로 변환:

wkhtmltopdf {{입력.html}} {{출력.pdf}}

  • PDF 페이지 크기 지정 (QPrinterPaperSize에서 지원되는 크기를 참조):

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}}