Some test text!
Cli / Guides / FAQ
For developers who are looking for a software development component to integrate into their applications, Apryse offers a PDF to HTML conversion API.
For more details, please vist www.apryse.com or contact a Apryse representative for more information.
PDF2HTML is a completely stand-alone application and does not include any dependencies on third-party components or software.
By default, PDF2HTML saves converted files in the same folder as the input. To specify another output location, use the '-out' (or '-o') parameter with an absolute file name. For example:
pdf2html -in myIn.pdf -out "c:\My Output\myOut.html"
The output filename can be changed using the '-out' (or '-o') option. For example, the following command-line generates an output document named outdoc.html:
pdf2html -in indoc.pdf -out outdoc.html
By default, PDF2HTML will convert all PDF pages into an output HTML or HTM file. You can specify a subset of pages to convert using the '-pages' option. For example:
pdf2html -pages 2 -in in.pdf -out out.html
will convert only page 2.
To specify a range of pages, use a dash character between numbers. For example:
pdf2html -pages 1-3 -in in.pdf -out out.html
will convert pages 1 to 3.
PDF2HTML supports batch conversion of many PDF files in a single pass. For example, to convert three PDFs, a.pdf, b.pdf and c.pdf, to a.htm, b.htm and c.htm, you could use the following line:
pdf2html -in a.pdf b.pdf c.pdf -out a.htm b.htm c.htm
The number of input file names must match the number of output file names.
For Windows (not available for Linux and Mac), you can convert all PDF files in a given folder to HTML by using wildcards and omitting the '-out' parameter. For example:
pdf2html -in "c:\My Input\*.pdf"
will take all PDF files in "c:\My Input" and generate HTML output files in the same folder as the input.
You can convert PDF to HTM by specifying the file extension as ".htm" in the output file name. The following command-line would generate output as mydoc.htm:
pdf2html -in mydoc.pdf -out mydoc.htm
PDF2HTML allows you to freely set the Title (<TITLE>) of the output HTML file. Please make sure that you enclose the title text in double quotes. With the '-title' option, the following command-line will set "My Title" as the Title of the output file:
pdf2html -title "My Title" -in my.pdf -out my.html
Output image resolution can be specified in dots per inch (dpi) using the '-resolution' (or '-res') parameter option.
By default, PDF2HTML uses a resolution of 96 dpi. Smaller dpi numbers result in smaller images while larger dpi numbers generate larger but higher quality images. For example, to convert all images in a PDF at 200 dpi, use the following syntax:
pdf2html -resolution 200 -in images.pdf -out images.html
PDF2HTML can convert all images in a PDF to either JPEG or PNG format using the '-compress' (or '-compression') parameter option. The default output image type is JPEG. For example:
pdf2html -compress jpeg -in in.pdf -out jpg.html
will output images as JPEG.
Follow this example to convert images to PNG format:
pdf2html -compress png -in in.pdf -out png.html
PDF2HTML can convert a PDF with images into a self-contained HTML file by embedding the images. The following command-line will embed all images and create a self-contained single.html output file:
pdf2html -embedImages on -in images.pdf -out single.html
PDF2HTML will, without user intervention, convert documents secured with a master/owner password.
For unattended conversion, specify the master/owner password directly on the command-line using the '-password' parameter option. The password provided must give unrestricted content extraction permissions. For example, to convert a password protected secured.pdf with the master password, 'secret', use the following syntax:
pdf2html -password secret -in secured.pdf -out secured.html
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales