From 8bfb4c0e874911f0284129cf03afa0b732e98ec9 Mon Sep 17 00:00:00 2001 From: shellheim <116480892+shellheim@users.noreply.github.com> Date: Sat, 23 Sep 2023 15:53:33 +0000 Subject: [PATCH] pdftohtml: add page (#10748) * pdftohtml: add page --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/pdftohtml.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/pdftohtml.md diff --git a/pages/linux/pdftohtml.md b/pages/linux/pdftohtml.md new file mode 100644 index 000000000..c5c818e86 --- /dev/null +++ b/pages/linux/pdftohtml.md @@ -0,0 +1,20 @@ +# pdftohtml + +> Convert PDF files into HTML, XML and PNG images. +> More information: . + +- Convert a PDF file to an HTML file: + +`pdftohtml {{path/to/file.pdf}} {{path/to/output_file.html}}` + +- Ignore images in the PDF file: + +`pdftohtml -i {{path/to/file.pdf}} {{path/to/output_file.html}}` + +- Generate a single HTML file that includes all PDF pages: + +`pdftohtml -s {{path/to/file.pdf}} {{path/to/output_file.html}}` + +- Convert a PDF file to an XML file: + +`pdftohtml -xml {{path/to/file.pdf}} {{path/to/output_file.xml}}`