source code-pdf to html conversion in windows application

Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #3465

    can u send m source code-pdf to html conversion in windows application

    #3467

    i am not sure about it. you can not convert pdf to html directly in .net. .net framework does not anything to convert pdf to html.

    you should move to some open source solution or Adove PDF SDK.

    #3469

    how i m convert pdf to html in windows application in c# plz tell me or send me source code

    #3752
    Ankur
    Member

    There is not any direct way to convert pdf to html in C#. You need to use any third party tools.

    #4469

    Hi, buddy, im nor sure you still need this help or not, according to your question, i searched following pdf to html conversion info in a professional image program. cause im not sure which language you are using, so i offer c#. net and vb .net conversion code.

    tags: pdf to html conversion in c# .net

    public void ConvertPdftoHtml();
    {
    PDFInputFile = (@”C:/1.pdf”);
    PDFPageNumber = “1”;
    HTMLOutputFile = OutputFormat.html;
    }
    PDF.Save(“OutputFormat.html”, SaveFormat.Html);

    tags: pdf to html in vb .net

    Public Sub ConvertPdftoHtml()
    If True Then
    PDFInputFile = (“C:/1.pdf”)
    PDFPageNumber = “1”
    HTMLOutputFile = OutputFormat.html
    End If
    End Sub
    PDF.Save(“OutputFormat.html”, SaveFormat.Html)

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.