FastPlay
FastPlay

Reputation: 21

How to convert multiple PDF to Html webpage

I need to convert 800+pdf files into html webpage, and every pdf file had own page on html webpage. I tried to make with Adobe Acrobat, but what i get was every pdf merged in one big list.

So is there any way to automatically do this?

Upvotes: 2

Views: 1054

Answers (2)

Rony Macfly
Rony Macfly

Reputation: 413

pdf2htmlEX

Preserves formatting of the PDF file

Only works through docker (On new builds of Linux, this package is not present and deb packages are not installed)

sudo docker pull bwits/pdf2htmlex

sudo docker run -ti --rm -v /home/user/Documents/pdfToHtml:/pdf bwits/pdf2htmlex pdf2htmlEX --zoom 1.3 file.pdf

Upvotes: 0

Lucas Koerner
Lucas Koerner

Reputation: 31

You could use pdftohtml on Linux and make it loop through all the files in the directory.

You can also find more information about pdftohtml on this thread: How to convert PDF to HTML?

Upvotes: 2

Related Questions