How can I convert PDF to HTML?

前端 未结 9 593
慢半拍i
慢半拍i 2020-12-12 20:09

What good libraries are there, in any common language, for converting PDF to HTML?

9条回答
  •  失恋的感觉
    2020-12-12 21:08

    In linux install pdftohtml - For batch convertion of all files in a folder use:

    ls *.pdf | xargs -I{} pdftohtml {}
    

    This will create html site with all references and images from original documents. Every page in a separate html file. Very useful to convert project documentation to search for files by phrase, using common system file search.

提交回复
热议问题