Convert PDF file to HTML in C #

I had a problem with displaying text in a pdf file embedded in a webbrowser control and selecting text using PDFLibNet.pdfwrapper, so I move on to another process where I just convert pdf to html so that I can manipulate the source code Select the text.
How to convert PDF files to html files?
Is there a better way?

Thanks,

Jepe

+7
c # pdf webbrowser-control
source share
2 answers

Try the open source pdftohtml application . It should suit your needs as you can use C # to automate the conversion after loading this small console application.

+1
source share

You can use the Aspose.Words api to convert pdf to doc, then to HTML.

0
source share

All Articles